]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
groundwork for responsive menu
[rails.git] / app / assets / javascripts / index.js
index 77b247c10fb0c1b294a9118749b5068662a87c5d..2f644e00a8831fc8df569be4d04977e5b1cea9a3 100644 (file)
@@ -292,7 +292,7 @@ $(document).ready(function () {
   });
 
   $(document).on("click", "a", function(e) {
-    if (e.isPropagationStopped()) return;
+    if (e.isDefaultPrevented() || e.isPropagationStopped()) return;
     if (this.host === window.location.host && OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
   });
 
@@ -303,6 +303,13 @@ $(document).ready(function () {
 
   $("#describe_location").on("click", function(e) {
     e.preventDefault();
-    OSM.route("/search?query=" + encodeURIComponent(map.getCenter().lat + "," + map.getCenter().lng));
+    var precision = zoomPrecision(map.getZoom());
+    OSM.route("/search?query=" + encodeURIComponent(
+      map.getCenter().lat.toFixed(precision) + "," +
+      map.getCenter().lng.toFixed(precision)));
+  });
+
+  $("#menu-icon").on("click", function() {
+    $("header").toggleClass("closed");
   });
 });