]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
HTMLize note browse pages
[rails.git] / app / assets / javascripts / index.js
index e96ffbf02cffa713776da79b0b3864e45e38863b..6118c8e0d741c7a3ef0614d24f3e91b922e69aab 100644 (file)
@@ -2,6 +2,7 @@
 //= require index/browse
 //= require index/export
 //= require index/key
+//= require index/notes
 
 $(document).ready(function () {
   var permalinks = $("#permalink").detach().html();
@@ -13,7 +14,7 @@ $(document).ready(function () {
 
   map.attributionControl.setPrefix(permalinks);
 
-  map.on("moveend baselayerchange", updateLocation);
+  map.on("moveend layeradd layerremove", updateLocation);
 
   if (!params.object_zoom) {
     if (params.bbox) {
@@ -57,6 +58,10 @@ $(document).ready(function () {
       map.setView(centre, data.zoom);
     }
 
+    if (data.type && data.id) {
+      addObjectToMap(data, true);
+    }
+
     if (marker) {
       map.removeLayer(marker);
     }