X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b625eefdeb55822c7d4a4dafa6473c8ac537ef48..08359d8d5f61ce3a9648b9fd2023748078e9c2e6:/app/assets/javascripts/index/query.js diff --git a/app/assets/javascripts/index/query.js b/app/assets/javascripts/index/query.js index a7d228ff9..5c8ee8876 100644 --- a/app/assets/javascripts/index/query.js +++ b/app/assets/javascripts/index/query.js @@ -1,5 +1,3 @@ -//= require qs/dist/qs - OSM.Query = function (map) { var url = OSM.OVERPASS_URL, credentials = OSM.OVERPASS_CREDENTIALS, @@ -111,9 +109,9 @@ OSM.Query = function (map) { var tags = feature.tags, locales = OSM.preferred_languages; - for (var i = 0; i < locales.length; i++) { - if (tags["name:" + locales[i]]) { - return tags["name:" + locales[i]]; + for (const locale of locales) { + if (tags["name:" + locale]) { + return tags["name:" + locale]; } } @@ -195,22 +193,20 @@ OSM.Query = function (map) { elements = elements.sort(compare); } - for (var i = 0; i < elements.length; i++) { - var element = elements[i]; - - if (interestingFeature(element)) { - var $li = $("
  • ") - .addClass("list-group-item list-group-item-action") - .text(featurePrefix(element) + " ") - .appendTo($ul); - - $("") - .addClass("stretched-link") - .attr("href", "/" + element.type + "/" + element.id) - .data("geometry", featureGeometry(element)) - .text(featureName(element)) - .appendTo($li); - } + for (const element of elements) { + if (!interestingFeature(element)) continue; + + var $li = $("
  • ") + .addClass("list-group-item list-group-item-action") + .text(featurePrefix(element) + " ") + .appendTo($ul); + + $("") + .addClass("stretched-link") + .attr("href", "/" + element.type + "/" + element.id) + .data("geometry", featureGeometry(element)) + .text(featureName(element)) + .appendTo($li); } if (results.remark) { @@ -253,9 +249,9 @@ OSM.Query = function (map) { * To find nearby objects we ask overpass for the union of the * following sets: * - * node(around:,,lng>) - * way(around:,,lng>) - * relation(around:,,lng>) + * node(around:,,) + * way(around:,,) + * relation(around:,,) * * to find enclosing objects we first find all the enclosing areas: * @@ -272,47 +268,36 @@ 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(); if (marker) map.removeLayer(marker); - marker = L.circle(latlng, radius, featureStyle).addTo(map); - - $(document).everyTime(75, "fadeQueryMarker", function (i) { - if (i === 10) { - map.removeLayer(marker); - } else { - marker.setStyle({ - opacity: 1 - (i * 0.1), - fillOpacity: 0.5 - (i * 0.05) - }); - } - }, 10); + marker = L.circle(latlng, Object.assign({ + radius: radius, + className: "query-marker" + }, featureStyle)).addTo(map); runQuery(latlng, radius, nearby, $("#query-nearby"), false); runQuery(latlng, radius, isin, $("#query-isin"), true, compareSize); } 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?" + new URLSearchParams({ lat, lon })); } function enableQueryMode() { @@ -337,8 +322,8 @@ OSM.Query = function (map) { }; page.load = function (path, noCentre) { - var params = Qs.parse(path.substring(path.indexOf("?") + 1)), - latlng = L.latLng(params.lat, params.lon); + const params = new URLSearchParams(path.substring(path.indexOf("?"))), + latlng = L.latLng(params.get("lat"), params.get("lon")); if (!window.location.hash && !noCentre && !map.getBounds().contains(latlng)) { OSM.router.withoutMoveListener(function () { @@ -346,7 +331,7 @@ OSM.Query = function (map) { }); } - queryOverpass(params.lat, params.lon); + queryOverpass(params.get("lat"), params.get("lon")); }; page.unload = function (sameController) {