mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
16 lines
273 B
JavaScript
16 lines
273 B
JavaScript
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)
|
|
}
|
|
}
|
|
}
|
|
|
|
export {
|
|
formatRectangle,
|
|
}
|