]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/note.js.erb
Fix new note wrapping
[rails.git] / app / assets / javascripts / index / note.js.erb
index 5022cfb809b0740f657513af6e8ef96df310047e..09044bf0ef35219a477a9495ab5cda5d30cc6172 100644 (file)
@@ -70,8 +70,11 @@ OSM.Note = function (map) {
 
     var data = $('.details').data();
     if (!noteState) map.addLayer(noteLayer);
 
     var data = $('.details').data();
     if (!noteState) map.addLayer(noteLayer);
-    if (window.location.hash == "") {
+    if (!window.location.hash) {
       var coords = data.coordinates.split(',');
       var coords = data.coordinates.split(',');
+      OSM.route.moveListenerOff();
+      map.once('moveend', OSM.route.moveListenerOn);
+
       map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
     }
 
       map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
     }