]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Use appropriate precision for "Where am I?"
[rails.git] / app / assets / javascripts / index.js
index ef23e340d36a6015896e7dd2d82c967ea8b3a9a5..a044937fc1158546bc3f6cff24bac50743bc2f13 100644 (file)
@@ -292,8 +292,8 @@ $(document).ready(function () {
   });
 
   $(document).on("click", "a", function(e) {
-    if (e.isPropagationStopped()) return;
-    if (OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
+    if (e.isDefaultPrevented() || e.isPropagationStopped()) return;
+    if (this.host === window.location.host && OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
   });
 
   $("#search_form").on("submit", function(e) {
@@ -303,6 +303,9 @@ $(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)));
   });
 });