- var latlng = L.latLng(lat, lng).wrap(),
- bounds = map.getBounds().wrap(),
- zoom = map.getZoom(),
- bbox = [bounds.getSouthWest(), bounds.getNorthEast()]
- .map(c => OSM.cropLocation(c, zoom))
- .join(),
- geombbox = "geom(" + bbox + ");",
- radius = 10 * Math.pow(1.5, 19 - zoom),
- around = "(around:" + radius + "," + lat + "," + lng + ")",
- nodes = "node" + around,
- ways = "way" + around,
- relations = "relation" + around,
- nearby = "(" + nodes + ";" + ways + ";);out tags " + geombbox + relations + ";out " + geombbox,
- isin = "is_in(" + lat + "," + lng + ")->.a;way(pivot.a);out tags bb;out ids " + geombbox + "relation(pivot.a);out tags bb;";
+ const latlng = L.latLng(lat, lng).wrap(),
+ bounds = map.getBounds().wrap(),
+ zoom = map.getZoom(),
+ bbox = [bounds.getSouthWest(), bounds.getNorthEast()]
+ .map(c => OSM.cropLocation(c, zoom))
+ .join(),
+ geombbox = "geom(" + bbox + ");",
+ radius = 10 * Math.pow(1.5, 19 - zoom),
+ around = "(around:" + radius + "," + lat + "," + lng + ")",
+ nodes = "node" + around,
+ ways = "way" + around,
+ relations = "relation" + around,
+ nearby = "(" + nodes + ";" + ways + ";);out tags " + geombbox + relations + ";out " + geombbox,
+ isin = "is_in(" + lat + "," + lng + ")->.a;way(pivot.a);out tags bb;out ids " + geombbox + "relation(pivot.a);out tags bb;";