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