X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0ff7a928e4359b177a43b7d2e8e1e0e468c2be53..c5ef6404f5782c8305f9d1d25d2c99a545cdd9a1:/app/assets/javascripts/index/query.js diff --git a/app/assets/javascripts/index/query.js b/app/assets/javascripts/index/query.js index 1e1dc2ed1..018aedf98 100644 --- a/app/assets/javascripts/index/query.js +++ b/app/assets/javascripts/index/query.js @@ -12,7 +12,7 @@ OSM.Query = function(map) { weight: 4, opacity: 1, fillOpacity: 0.5, - clickable: false + interactive: false }; queryButton.on("click", function (e) { @@ -179,7 +179,7 @@ OSM.Query = function(map) { url: url, method: "POST", data: { - data: "[timeout:5][out:json];" + query, + data: "[timeout:10][out:json];" + query, }, success: function(results) { var elements; @@ -189,6 +189,9 @@ OSM.Query = function(map) { if (merge) { elements = results.elements.reduce(function (hash, element) { var key = element.type + element.id; + if ("geometry" in element) { + delete element.bounds; + } hash[key] = $.extend({}, hash[key], element); return hash; }, {}); @@ -223,6 +226,12 @@ OSM.Query = function(map) { } } + if (results.remark) { + $("
  • ") + .text(I18n.t("javascripts.query.error", { server: url, error: results.remark })) + .appendTo($ul); + } + if ($ul.find("li").length === 0) { $("
  • ") .text(I18n.t("javascripts.query.nothing_found"))