forked from MapComplete/MapComplete
Rephrase to increase clarity
This commit is contained in:
parent
9c47111696
commit
508ef8a970
2 changed files with 2 additions and 2 deletions
|
@ -402,7 +402,7 @@ export class OsmWay extends OsmObject {
|
|||
}
|
||||
|
||||
public asGeoJson() {
|
||||
let coordinates: ([number, number][] | [number, number][][]) = this.coordinates.map(c => [c[1], c[0]]);
|
||||
let coordinates: ([number, number][] | [number, number][][]) = this.coordinates.map(([lat, lon]) => [lon, lat]);
|
||||
if (this.isPolygon()) {
|
||||
coordinates = [coordinates]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue