+ OSM.router.route("/" + OSM.formatHash(map));
+ }
+ });
+
+ $(".describe_location").on("click", function (e) {
+ e.preventDefault();
+ var center = map.getCenter().wrap(),
+ precision = OSM.zoomPrecision(map.getZoom());
+ OSM.router.route("/search?whereami=1&query=" + encodeURIComponent(
+ center.lat.toFixed(precision) + "," + center.lng.toFixed(precision)
+ ));
+ });
+
+ $("#sidebar_content")
+ .on("click", ".search_more a", clickSearchMore)
+ .on("click", ".search_results_entry a.set_position", clickSearchResult)
+ .on("mouseover", "li.search_results_entry:has(a.set_position)", showSearchResult)
+ .on("mouseout", "li.search_results_entry:has(a.set_position)", hideSearchResult);
+
+ var markers = L.layerGroup().addTo(map);
+
+ function clickSearchMore(e) {
+ e.preventDefault();
+ e.stopPropagation();
+
+ var div = $(this).parents(".search_more"),
+ csrf_param = $("meta[name=csrf-param]").attr("content"),
+ csrf_token = $("meta[name=csrf-token]").attr("content"),
+ params = {};
+
+ $(this).hide();
+ div.find(".loader").show();
+
+ params[csrf_param] = csrf_token;
+
+ $.ajax({
+ url: $(this).attr("href"),
+ method: "POST",
+ data: params,
+ success: function (data) {
+ div.replaceWith(data);
+ }
+ });
+ }
+
+ function showSearchResult() {
+ var marker = $(this).data("marker");
+
+ if (!marker) {
+ var data = $(this).find("a.set_position").data();
+
+ marker = L.marker([data.lat, data.lon], { icon: OSM.getUserIcon() });
+
+ $(this).data("marker", marker);