db-vendo-client/format/rectangle.js

17 lines
291 B
JavaScript
Raw Normal View History

2017-11-20 17:37:08 +01:00
'use strict'
const formatRectangle = (profile, north, west, south, east) => {
return {
llCrd: {
x: profile.formatCoord(west),
y: profile.formatCoord(south)
},
urCrd: {
x: profile.formatCoord(east),
y: profile.formatCoord(north)
}
}
}
module.exports = formatRectangle