}
}
- 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;
$(this).show();
});
- $.ajax({
- url: "http://overpass-api.de/api/interpreter",
- method: "GET",
+ if ($section.data("ajax")) {
+ $section.data("ajax").abort();
+ }
+
+ $section.data("ajax", $.ajax({
+ url: OSM.OVERPASS_URL,
+ method: "POST",
data: {
data: "[timeout:5][out:json];" + query,
},
.appendTo($li);
$("<a>")
- .attr("href", featureLink(element))
+ .attr("href", "/" + element.type + "/" + element.id)
.text(featureName(element))
.appendTo($p);
}
.appendTo($ul);
}
}
- });
+ }));
}
function queryOverpass(lat, lng) {
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;";
+ isin = "is_in(" + lat + "," + lng + ")->.a;(relation(pivot.a);way(pivot.a);node(w));out;";
$("#sidebar_content .query-intro")
.hide();
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() {