]> git.openstreetmap.org Git - rails.git/commitdiff
Don't try and parse an empty string as a layer config, and cope a bit
authorTom Hughes <tom@compton.nu>
Mon, 2 Jun 2008 12:45:24 +0000 (12:45 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 2 Jun 2008 12:45:24 +0000 (12:45 +0000)
better if we do hit the end of the string. Closes #942.

app/views/site/index.rhtml
public/javascripts/map.js

index d6247158d3bcc7d5c31a3124f4801e5c910e911b..3e0400ce4dee689340b5a3081b5359bd6a0e53e7 100644 (file)
@@ -109,7 +109,7 @@ by the OpenStreetMap project and its contributors.
     setMapCenter(centre, zoom);
     <% end %>
 
-    <% if layers %>
+    <% if !layers.empty? %>
     setMapLayers("<%= layers %>");
     <% end %>
 
index 7591d7d162b4e2b73c40449efab37256d77bee3b..9f9be0987d4fa3d0071f0d5f8c55a465db16b452 100644 (file)
@@ -155,7 +155,11 @@ function setMapLayers(layerConfig) {
    for (var layers = map.getLayersBy("isBaseLayer", false), i = 0; i < layers.length; i++) {
       var c = layerConfig.charAt(l++);
 
-      layers[i].setVisibility(c == "T");
+      if (c == "T") {
+         layers[i].setVisibility(true);
+      } else if(c == "F") {
+         layers[i].setVisibility(false);
+      }
    }
 }