db-vendo-client/format/rectangle.js

17 lines
273 B
JavaScript
Raw Permalink Normal View History

2017-11-20 17:37:08 +01:00
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)
}
}
}
2022-05-07 16:17:37 +02:00
export {
formatRectangle,
}