]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/note.js.erb
Merge branch 'master' into redesign
[rails.git] / app / assets / javascripts / index / note.js.erb
index 2586f84c6d9af2f1082379bf3af21d726539086c..09044bf0ef35219a477a9495ab5cda5d30cc6172 100644 (file)
@@ -38,7 +38,7 @@ OSM.Note = function (map) {
         } else if (marker) {
           marker.setIcon(noteIcons[feature.properties.status]);
         }
-        page.load();
+        OSM.loadSidebarContent(window.location.pathname, page.load);
       }
     });
   }
@@ -70,12 +70,20 @@ OSM.Note = function (map) {
 
     var data = $('.details').data();
     if (!noteState) map.addLayer(noteLayer);
-    if (window.location.hash == "") map.panTo(data.coordinates.split(','));
+    if (!window.location.hash) {
+      var coords = data.coordinates.split(',');
+      OSM.route.moveListenerOff();
+      map.once('moveend', OSM.route.moveListenerOn);
+
+      map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
+    }
 
     if (!map.hasLayer(halo)) {
       halo = L.circleMarker(data.coordinates.split(','), {
         weight: 2.5,
-        radius: 20
+        radius: 20,
+        fillOpacity: 0.5,
+        color: "#FF6200"
       });
       map.addLayer(halo);
     }