282 lines
7.4 KiB
JavaScript
282 lines
7.4 KiB
JavaScript
//= require jquery.simulate
|
|
|
|
OSM.Query = function(map) {
|
|
var queryButton = $(".control-query .control-button"),
|
|
uninterestingTags = ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by', 'tiger:county', 'tiger:tlid', 'tiger:upload_uuid'],
|
|
marker;
|
|
|
|
var featureStyle = {
|
|
color: "#FF6200",
|
|
weight: 4,
|
|
opacity: 1,
|
|
fillOpacity: 0.5,
|
|
clickable: false
|
|
};
|
|
|
|
queryButton.on("click", function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
if (queryButton.hasClass("disabled")) return;
|
|
|
|
if (queryButton.hasClass("active")) {
|
|
disableQueryMode();
|
|
|
|
OSM.router.route("/");
|
|
} else {
|
|
enableQueryMode();
|
|
}
|
|
}).on("disabled", function (e) {
|
|
if (queryButton.hasClass("active")) {
|
|
map.off("click", clickHandler);
|
|
$(map.getContainer()).removeClass("query-active").addClass("query-disabled");
|
|
$(this).tooltip("show");
|
|
}
|
|
}).on("enabled", function (e) {
|
|
if (queryButton.hasClass("active")) {
|
|
map.on("click", clickHandler);
|
|
$(map.getContainer()).removeClass("query-disabled").addClass("query-active");
|
|
$(this).tooltip("hide");
|
|
}
|
|
});
|
|
|
|
$("#sidebar_content")
|
|
.on("mouseover", ".query-results li.query-result", function () {
|
|
var geometry = $(this).data("geometry")
|
|
if (geometry) map.addLayer(geometry);
|
|
$(this).addClass("selected");
|
|
})
|
|
.on("mouseout", ".query-results li.query-result", function () {
|
|
var geometry = $(this).data("geometry")
|
|
if (geometry) map.removeLayer(geometry);
|
|
$(this).removeClass("selected");
|
|
})
|
|
.on("click", ".query-results li.query-result", function (e) {
|
|
if (!$(e.target).is('a')) {
|
|
$(this).find("a").simulate("click", e);
|
|
}
|
|
});
|
|
|
|
function interestingFeature(feature, origin, radius) {
|
|
if (feature.tags) {
|
|
if (feature.type === "node" &&
|
|
OSM.distance(origin, L.latLng(feature.lat, feature.lon)) > radius) {
|
|
return false;
|
|
}
|
|
|
|
for (var key in feature.tags) {
|
|
if (uninterestingTags.indexOf(key) < 0) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function featurePrefix(feature) {
|
|
var tags = feature.tags;
|
|
var prefix = "";
|
|
|
|
if (tags.boundary === "administrative") {
|
|
prefix = I18n.t("geocoder.search_osm_nominatim.admin_levels.level" + tags.admin_level)
|
|
} else {
|
|
var prefixes = I18n.t("geocoder.search_osm_nominatim.prefix");
|
|
|
|
for (var key in tags) {
|
|
var value = tags[key];
|
|
|
|
if (prefixes[key]) {
|
|
if (prefixes[key][value]) {
|
|
return prefixes[key][value];
|
|
} else {
|
|
var first = value.substr(0, 1).toUpperCase(),
|
|
rest = value.substr(1).replace(/_/g, " ");
|
|
|
|
return first + rest;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!prefix) {
|
|
prefix = I18n.t("javascripts.query." + feature.type);
|
|
}
|
|
|
|
return prefix;
|
|
}
|
|
|
|
function featureName(feature) {
|
|
var tags = feature.tags;
|
|
|
|
if (tags["name"]) {
|
|
return tags["name"];
|
|
} else if (tags["ref"]) {
|
|
return tags["ref"];
|
|
} else if (tags["addr:housenumber"] && tags["addr:street"]) {
|
|
return tags["addr:housenumber"] + " " + tags["addr:street"];
|
|
} else {
|
|
return "#" + feature.id;
|
|
}
|
|
}
|
|
|
|
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, nodes) {
|
|
var geometry;
|
|
|
|
if (feature.type === "node") {
|
|
geometry = L.circleMarker([feature.lat, feature.lon], featureStyle);
|
|
} else if (feature.type === "way") {
|
|
geometry = L.polyline(feature.nodes.map(function (node) {
|
|
return nodes[node];
|
|
}), featureStyle);
|
|
}
|
|
|
|
return geometry;
|
|
}
|
|
|
|
function runQuery(latlng, radius, query, $section) {
|
|
var $ul = $section.find("ul");
|
|
|
|
$ul.empty();
|
|
$section.show();
|
|
|
|
$section.find(".loader").oneTime(1000, "loading", function () {
|
|
$(this).show();
|
|
});
|
|
|
|
$.ajax({
|
|
url: "http://overpass-api.de/api/interpreter",
|
|
method: "GET",
|
|
data: {
|
|
data: "[timeout:5][out:json];" + query,
|
|
},
|
|
success: function(results) {
|
|
var nodes = {};
|
|
|
|
$section.find(".loader").stopTime("loading").hide();
|
|
|
|
results.elements.forEach(function (element) {
|
|
if (element.type === "node") {
|
|
nodes[element.id] = [element.lat, element.lon];
|
|
}
|
|
});
|
|
|
|
for (var i = 0; i < results.elements.length; i++) {
|
|
var element = results.elements[i];
|
|
|
|
if (interestingFeature(element, latlng, radius)) {
|
|
var $li = $("<li>")
|
|
.addClass("query-result")
|
|
.data("geometry", featureGeometry(element, nodes))
|
|
.appendTo($ul);
|
|
var $p = $("<p>")
|
|
.text(featurePrefix(element) + " ")
|
|
.appendTo($li);
|
|
|
|
$("<a>")
|
|
.attr("href", featureLink(element))
|
|
.text(featureName(element))
|
|
.appendTo($p);
|
|
}
|
|
}
|
|
|
|
if ($ul.find("li").length == 0) {
|
|
$("<li>")
|
|
.text(I18n.t("javascripts.query.nothing_found"))
|
|
.appendTo($ul);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
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;";
|
|
|
|
$("#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);
|
|
|
|
runQuery(latlng, radius, nearby, $("#query-nearby"));
|
|
runQuery(latlng, radius, isin, $("#query-isin"));
|
|
}
|
|
|
|
function clickHandler(e) {
|
|
var precision = OSM.zoomPrecision(map.getZoom()),
|
|
lat = e.latlng.lat.toFixed(precision),
|
|
lng = e.latlng.lng.toFixed(precision);
|
|
|
|
OSM.router.route("/query?lat=" + lat + "&lon=" + lng);
|
|
}
|
|
|
|
function enableQueryMode() {
|
|
queryButton.addClass("active");
|
|
map.on("click", clickHandler);
|
|
$(map.getContainer()).addClass("query-active");
|
|
}
|
|
|
|
function disableQueryMode() {
|
|
if (marker) map.removeLayer(marker);
|
|
$(map.getContainer()).removeClass("query-active").removeClass("query-disabled");
|
|
map.off("click", clickHandler);
|
|
queryButton.removeClass("active");
|
|
}
|
|
|
|
var page = {};
|
|
|
|
page.pushstate = page.popstate = function(path) {
|
|
OSM.loadSidebarContent(path, function () {
|
|
page.load(path);
|
|
});
|
|
};
|
|
|
|
page.load = function(path) {
|
|
var params = querystring.parse(path.substring(path.indexOf('?') + 1));
|
|
|
|
queryOverpass(params.lat, params.lon);
|
|
enableQueryMode();
|
|
|
|
return map.getState();
|
|
};
|
|
|
|
page.unload = function() {
|
|
disableQueryMode();
|
|
};
|
|
|
|
return page;
|
|
};
|