]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/index.rhtml
Only add the data layer to the main map, and use the visibility changed
[rails.git] / app / views / site / index.rhtml
index 895885360f03bef6100ec927f5f71f07ca5a12ec..bd114a6b36e54c640dc1221261de6ccec5f37e2a 100644 (file)
@@ -86,6 +86,10 @@ by the OpenStreetMap project and its contributors.
   function mapInit(){
     map = createMap("map");
 
+    map.dataLayer = new OpenLayers.Layer("Data", { "visibility": false });
+    map.dataLayer.events.register("visibilitychanged", map.dataLayer, toggleData);
+    map.addLayer(map.dataLayer);
+
     <% if bbox %>
     var bbox = new OpenLayers.Bounds(<%= minlon %>, <%= minlat %>, <%= maxlon %>, <%= maxlat %>);
 
@@ -118,6 +122,14 @@ by the OpenStreetMap project and its contributors.
     handleResize();
   }
 
+  function toggleData() {
+    if (map.dataLayer.visibility) {
+      <%= remote_function :url => { :controller => 'browse', :action => 'start' } %>
+    } else {
+      closeSidebar();
+    }
+  }
+
   function getPosition() {
     return getMapCenter();
   }