mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
|
'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
|