diff --git a/src/Logic/Osm/Overpass.ts b/src/Logic/Osm/Overpass.ts index 31f9b79cd..8baefb681 100644 --- a/src/Logic/Osm/Overpass.ts +++ b/src/Logic/Osm/Overpass.ts @@ -6,7 +6,7 @@ import osmtogeojson from "osmtogeojson" import { FeatureCollection } from "@turf/turf" import { Geometry } from "geojson" import { OsmTags } from "../../Models/OsmFeature" - +"use strict"; /** * Interfaces overpass to get all the latest data */ @@ -71,9 +71,9 @@ export class Overpass { console.warn("No features for", json) } - const geojson = osmtogeojson(json) + const geojson = > osmtogeojson(json) const osmTime = new Date(json.osm3s.timestamp_osm_base) - return [geojson, osmTime] + return [geojson, osmTime] } /**