e.preventDefault();
var center = map.getCenter().wrap(),
precision = OSM.zoomPrecision(map.getZoom());
- OSM.router.route("/search?query=" + encodeURIComponent(
+ OSM.router.route("/search?whereami=1&query=" + encodeURIComponent(
center.lat.toFixed(precision) + "," + center.lng.toFixed(precision)
));
});
.on("mousedown", "p.search_results_entry:has(a.set_position)", function () {
var moved = false;
$(this).one("click", function (e) {
- if (!moved && !$(e.target).is('a')) {
+ if (!moved && !$(e.target).is("a")) {
$(this).find("a.set_position").simulate("click", e);
}
}).one("mousemove", function () {
});
});
+ var markers = L.layerGroup().addTo(map);
+
function clickSearchMore(e) {
e.preventDefault();
e.stopPropagation();
e.stopPropagation();
}
- var markers = L.layerGroup().addTo(map);
-
var page = {};
page.pushstate = page.popstate = function(path) {
- var params = querystring.parse(path.substring(path.indexOf('?') + 1));
+ var params = querystring.parse(path.substring(path.indexOf("?") + 1));
$(".search_form input[name=query]").val(params.query);
$(".describe_location").hide();
OSM.loadSidebarContent(path, page.load);
var entry = $(this);
$.ajax({
url: entry.data("href"),
- method: 'GET',
+ method: "GET",
data: {
zoom: map.getZoom(),
minlon: map.getBounds().getWest(),
entry.html(html);
// go to first result of first geocoder
if (index === 0) {
- var firstResult = entry.find('*[data-lat][data-lon]:first').first();
+ var firstResult = entry.find("*[data-lat][data-lon]:first").first();
if (firstResult.length) {
panToSearchResult(firstResult.data());
}