]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/leaflet.layers.js
Use a radio button for base layers
[rails.git] / app / assets / javascripts / leaflet.layers.js
index 15f114a5caa8d6711da4f37f58cd8406b3e4a380..2f06ab9c577aa7105f3ff51408c183476d51f5c0 100644 (file)
-//= require templates/map/layers
+L.OSM.layers = function(options) {
+  var control = L.control(options);
+
+  control.onAdd = function (map) {
+    var layers = options.layers;
+
+    var $container = $('<div>')
+      .attr('class', 'control-layers');
+
+    var link = $('<a>')
+      .attr('class', 'control-button')
+      .attr('href', '#')
+      .attr('title', 'Layers')
+      .html('<span class="icon layers"></span>')
+      .on('click', toggle)
+      .appendTo($container);
+
+    var $ui = $('<div>')
+      .attr('class', 'layers-ui');
+
+    $('<section>')
+       .appendTo($ui)
+       .append(
+          $('<a>')
+            .html('&raquo;')
+            .attr('class', 'close-button')
+            .attr('href', '#')
+            .bind('click', toggle))
+       .append(
+        $('<h2>')
+          .text(I18n.t('javascripts.map.layers.header')));
+
+    var baseSection = $('<section>')
+      .addClass('base-layers')
+      .appendTo($ui);
+
+    $('<p>')
+      .text(I18n.t('javascripts.map.layers.base'))
+      .appendTo(baseSection);
+
+    list = $('<ul>')
+      .appendTo(baseSection);
+
+    layers.forEach(function(layer) {
+      var item = $('<li>')
+        .appendTo(list);
 
-L.OSM.Layers = L.Control.extend({
-  onAdd: function (map) {
-    this._map = map;
-    this._initLayout(map);
-    return this._container;
-  },
+      if (map.hasLayer(layer)) {
+        item.addClass('active');
+      }
 
-  _initLayout: function () {
-    var className = 'leaflet-control-map-ui',
-      container = this._container = L.DomUtil.create('div', className);
+      var div = $('<div>')
+        .appendTo(item);
 
-    var link = L.DomUtil.create('a', 'control-button', container);
-    link.innerHTML = "<span class='icon layers'></span>";
-    link.href = '#';
-    link.title = 'Layers';
+      map.whenReady(function() {
+        var miniMap = L.map(div[0], {attributionControl: false, zoomControl: false})
+          .addLayer(new layer.constructor());
 
-    this._ui = $(L.DomUtil.create('div', 'layers-ui', this.options.uiPane))
-      .html(JST["templates/map/layers"]());
+        miniMap.dragging.disable();
+        miniMap.touchZoom.disable();
+        miniMap.doubleClickZoom.disable();
+        miniMap.scrollWheelZoom.disable();
 
-    var list = this._ui.find('.base-layers ul');
+        $ui
+          .on('show', shown)
+          .on('hide', hide);
 
-    this.options.layers.forEach(function(layer) {
-      var item = $('<li></li>')
-        .appendTo(list);
+        function shown() {
+          miniMap.invalidateSize();
+          setView();
+          map.on('moveend', setView);
+        }
 
-      if (this._map.hasLayer(layer)) {
-        item.addClass('active');
-      }
+        function hide() {
+          map.off('moveend', setView);
+        }
 
-      var div = $('<div></div>')
-        .appendTo(item);
+        function setView() {
+          miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0));
+        }
+      });
 
-      this._map.whenReady(function() {
-        var map = L.map(div[0], {attributionControl: false, zoomControl: false})
-          .setView(this._map.getCenter(), Math.max(this._map.getZoom() - 2, 0))
-          .addLayer(new layer.constructor);
+      var label = $('<label>')
+        .appendTo(item);
 
-        map.dragging.disable();
-        map.touchZoom.disable();
-        map.doubleClickZoom.disable();
-        map.scrollWheelZoom.disable();
-      }, this);
+      var input = $('<input>')
+        .attr('type', 'radio')
+        .prop('checked', map.hasLayer(layer))
+        .appendTo(label);
 
-      var label = $('<label></label>')
-        .text(layer.options.name)
-        .appendTo(item);
+      label.append(layer.options.name);
 
       item.on('click', function() {
-        this.options.layers.forEach(function(other) {
+        layers.forEach(function(other) {
           if (other === layer) {
-            this._map.addLayer(other);
+            map.addLayer(other);
           } else {
-            this._map.removeLayer(other);
+            map.removeLayer(other);
           }
-        }, this);
-      }.bind(this));
+        });
+        map.fire('baselayerchange', {layer: layer});
+      });
 
-      this._map.on('layeradd', function(e) {
-        if (e.layer === layer) {
-          item.addClass('active');
-        }
-      }).on('layerremove', function(e) {
-        if (e.layer === layer) {
-          item.removeClass('active');
-        }
+      map.on('layeradd layerremove', function() {
+        item.toggleClass('active', map.hasLayer(layer));
+        input.prop('checked', map.hasLayer(layer));
       });
-    }, this);
+    });
+
+    if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
+      var overlaySection = $('<section>')
+        .addClass('overlay-layers')
+        .appendTo($ui);
+
+      $('<p>')
+        .text(I18n.t('javascripts.map.layers.overlays'))
+        .appendTo(overlaySection);
+
+      var list = $('<ul>')
+        .appendTo(overlaySection);
+
+      function addOverlay(layer, name) {
+        var item = $('<li>')
+          .appendTo(list);
+
+        var label = $('<label>')
+          .appendTo(item);
+
+        var input = $('<input>')
+          .attr('type', 'checkbox')
+          .prop('checked', map.hasLayer(layer))
+          .appendTo(label);
 
-    $(link).on('click', $.proxy(this.toggleLayers, this));
-  },
+        label.append(name);
 
-  toggleLayers: function (e) {
-    e.stopPropagation();
-    e.preventDefault();
+        input.on('change', function() {
+          if (input.is(':checked')) {
+            map.addLayer(layer);
+          } else {
+            map.removeLayer(layer);
+          }
+        });
 
-    var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+        map.on('layeradd layerremove', function() {
+          input.prop('checked', map.hasLayer(layer));
+        });
+      }
 
-    if ($(this._ui).is(':visible')) {
-      $(this.options.uiPane).hide();
-      controlContainer.css({paddingRight: '0'});
-    } else {
-      $(this.options.uiPane).show();
-      controlContainer.css({paddingRight: '230px'});
+      addOverlay(map.noteLayer, I18n.t('javascripts.map.layers.notes'));
+      addOverlay(map.dataLayer, I18n.t('javascripts.map.layers.data'));
     }
-  }
-});
 
-L.OSM.layers = function(options) {
-  return new L.OSM.Layers(options);
+    options.sidebar.addPane($ui);
+
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
+      options.sidebar.togglePane($ui);
+    }
+
+    return $container[0];
+  };
+
+  return control;
 };