]> git.openstreetmap.org Git - rails.git/commitdiff
Notice, and act on, changes to the layer parameter in the URL bar
authorTom Hughes <tom@compton.nu>
Mon, 9 Sep 2013 14:17:09 +0000 (15:17 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 9 Sep 2013 14:17:09 +0000 (15:17 +0100)
app/assets/javascripts/index.js

index d577e0cf731be9086e673ee4e63e883951c09570..a19a6a61e5c714b318b2d55441ab3b2332e2b1d8 100644 (file)
@@ -51,13 +51,24 @@ $(document).ready(function () {
     })
   ];
 
-  for (var i = layers.length - 1; i >= 0; i--) {
-    if (i === 0 || params.layers.indexOf(layers[i].options.code) >= 0) {
-      map.addLayer(layers[i]);
-      break;
+  function updateLayers(params) {
+    var layerParam = params.layers || "M";
+
+    for (var i = layers.length - 1; i >= 0; i--) {
+      if (layerParam.indexOf(layers[i].options.code) >= 0) {
+        map.addLayer(layers[i]);
+      } else {
+        map.removeLayer(layers[i]);
+      }
     }
   }
 
+  updateLayers(params);
+
+  $(window).on("hashchange", function () {
+    updateLayers(OSM.mapParams());
+  });
+
   map.noteLayer = new L.LayerGroup();
   map.noteLayer.options = {code: 'N'};