]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/index.rhtml
Disable the data browswer when the database is not available.
[rails.git] / app / views / site / index.rhtml
index 482ed85b89880744e8d556d5082c41a0f627889c..2cca4d5292317b8a3728e94ed33e3ec6e057312a 100644 (file)
@@ -94,9 +94,11 @@ by the OpenStreetMap project and its contributors.
   function mapInit(){
     map = createMap("map");
 
+    <% unless OSM_STATUS == :api_offline or OSM_STATUS == :database_offline %>
     map.dataLayer = new OpenLayers.Layer("Data", { "visibility": false });
     map.dataLayer.events.register("visibilitychanged", map.dataLayer, toggleData);
     map.addLayer(map.dataLayer);
+    <% end %>
 
     <% if bbox %>
     var bbox = new OpenLayers.Bounds(<%= minlon %>, <%= minlat %>, <%= maxlon %>, <%= maxlat %>);