X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3a1b4cbe3396092efa2ea2c60cdbfb2a6ed6de0d..22761a9d1f1f0628971d607f14bbfa7f1f19ce94:/app/assets/javascripts/index/query.js diff --git a/app/assets/javascripts/index/query.js b/app/assets/javascripts/index/query.js index 09e4de31e..672f650fa 100644 --- a/app/assets/javascripts/index/query.js +++ b/app/assets/javascripts/index/query.js @@ -272,18 +272,18 @@ OSM.Query = function (map) { function queryOverpass(lat, lng) { var latlng = L.latLng(lat, lng).wrap(), bounds = map.getBounds().wrap(), - precision = OSM.zoomPrecision(map.getZoom()), - bbox = bounds.getSouth().toFixed(precision) + "," + - bounds.getWest().toFixed(precision) + "," + - bounds.getNorth().toFixed(precision) + "," + - bounds.getEast().toFixed(precision), - radius = 10 * Math.pow(1.5, 19 - map.getZoom()), - around = "around:" + radius + "," + lat + "," + lng, - nodes = "node(" + around + ")", - ways = "way(" + around + ")", - relations = "relation(" + around + ")", - nearby = "(" + nodes + ";" + ways + ";);out tags geom(" + bbox + ");" + relations + ";out geom(" + bbox + ");", - isin = "is_in(" + lat + "," + lng + ")->.a;way(pivot.a);out tags bb;out ids geom(" + bbox + ");relation(pivot.a);out tags bb;"; + 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;"; $("#sidebar_content .query-intro") .hide(); @@ -299,12 +299,9 @@ OSM.Query = function (map) { } function clickHandler(e) { - var precision = OSM.zoomPrecision(map.getZoom()), - latlng = e.latlng.wrap(), - lat = latlng.lat.toFixed(precision), - lng = latlng.lng.toFixed(precision); + const [lat, lon] = OSM.cropLocation(e.latlng, map.getZoom()); - OSM.router.route("/query?lat=" + lat + "&lon=" + lng); + OSM.router.route("/query?" + Qs.stringify({ lat, lon })); } function enableQueryMode() {