X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/913da4a8db3e2be556a6a5898d1ebaca6a487044..8642e4c1f337c5088c84b2d3a6c0448ef704ed40:/app/assets/javascripts/index/query.js?ds=sidebyside diff --git a/app/assets/javascripts/index/query.js b/app/assets/javascripts/index/query.js index 1a91c202c..2a84207ec 100644 --- a/app/assets/javascripts/index/query.js +++ b/app/assets/javascripts/index/query.js @@ -1,7 +1,9 @@ //= require jquery.simulate OSM.Query = function(map) { - var queryButton = $(".control-query .control-button"), + var protocol = document.location.protocol === "https:" ? "https:" : "http:", + url = protocol + OSM.OVERPASS_URL, + queryButton = $(".control-query .control-button"), uninterestingTags = ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by', 'tiger:county', 'tiger:tlid', 'tiger:upload_uuid'], marker; @@ -20,9 +22,9 @@ OSM.Query = function(map) { if (queryButton.hasClass("disabled")) return; if (queryButton.hasClass("active")) { - disableQueryMode(); - - OSM.router.route("/"); + if ($("#content").hasClass("overlay-sidebar")) { + disableQueryMode(); + } } else { enableQueryMode(); } @@ -122,24 +124,6 @@ OSM.Query = function(map) { } } - function featureLink(feature) { - if (feature.type === "area") { - if (feature.id >= 3600000000) { - var id = feature.id - 3600000000; - - return "/browse/relation/" + id; - } else if (feature.id >= 2400000000) { - var id = feature.id - 2400000000; - - return "/browse/way/" + id; - } else { - return "/browse/node/" + feature.id; - } - } else { - return "/browse/" + feature.type + "/" + feature.id; - } - } - function featureGeometry(feature, features) { var geometry; @@ -176,8 +160,12 @@ OSM.Query = function(map) { $(this).show(); }); - $.ajax({ - url: "http://overpass-api.de/api/interpreter", + if ($section.data("ajax")) { + $section.data("ajax").abort(); + } + + $section.data("ajax", $.ajax({ + url: url, method: "POST", data: { data: "[timeout:5][out:json];" + query, @@ -201,7 +189,7 @@ OSM.Query = function(map) { .appendTo($li); $("") - .attr("href", featureLink(element)) + .attr("href", "/" + element.type + "/" + element.id) .text(featureName(element)) .appendTo($p); } @@ -212,17 +200,49 @@ OSM.Query = function(map) { .text(I18n.t("javascripts.query.nothing_found")) .appendTo($ul); } + }, + error: function(xhr, status, error) { + $section.find(".loader").stopTime("loading").hide(); + + $("
  • ") + .text(I18n.t("javascripts.query." + status, { server: url, error: error })) + .appendTo($ul); } - }); + })); } + /* + * To find nearby objects we ask overpass for the union of the + * following sets: + * + * node(around:,,lng>) + * way(around:,,lng>) + * node(w) + * relation(around:,,lng>) + * + * to find enclosing objects we first find all the enclosing areas: + * + * is_in(,)->.a + * + * and then return the union of the following sets: + * + * relation(pivot.a) + * way(pivot.a) + * node(w) + * + * In order to avoid overly large responses we don't currently + * attempt to complete any relations and instead just show those + * ways and nodes which are returned for other reasons. + */ function queryOverpass(lat, lng) { var latlng = L.latLng(lat, lng), radius = 10 * Math.pow(1.5, 19 - map.getZoom()), around = "around:" + radius + "," + lat + "," + lng, - features = "(node(" + around + ");way(" + around + ");relation(" + around + "))", - nearby = "((" + features + ";way(bn));node(w));out;", - isin = "(is_in(" + lat + "," + lng + ");>);out;"; + nodes = "node(" + around + ")", + ways = "way(" + around + ");node(w)", + relations = "relation(" + around + ")", + nearby = "(" + nodes + ";" + ways + ";" + relations + ");out;", + isin = "is_in(" + lat + "," + lng + ")->.a;(relation(pivot.a);way(pivot.a);node(w));out;"; $("#sidebar_content .query-intro") .hide(); @@ -270,17 +290,23 @@ OSM.Query = function(map) { page.pushstate = page.popstate = function(path) { OSM.loadSidebarContent(path, function () { - page.load(path); + page.load(path, true); }); }; - page.load = function(path) { - var params = querystring.parse(path.substring(path.indexOf('?') + 1)); + page.load = function(path, noCentre) { + var params = querystring.parse(path.substring(path.indexOf('?') + 1)), + latlng = L.latLng(params.lat, params.lon); + + if (!window.location.hash && + (!noCentre || !map.getBounds().contains(latlng))) { + OSM.router.withoutMoveListener(function () { + map.setView(latlng, 15); + }); + } queryOverpass(params.lat, params.lon); enableQueryMode(); - - return map.getState(); }; page.unload = function() {