]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/leaflet.key.js
Only one pane visible at a time
[rails.git] / app / assets / javascripts / leaflet.key.js
index 4cab964c9e178c0f166609247fef9b8f9dd89472..9fe457851f35dad9ed907a36a1fe65bb44875e19 100644 (file)
@@ -1,25 +1,65 @@
-L.OSM.Key = L.Control.extend({
-  onAdd: function (map) {
-    this._map = map;
-    this._initLayout();
-    return this.$container[0];
-  },
+L.OSM.key = function (options) {
+  var control = L.control(options);
 
-  _initLayout: function () {
-    var map = this._map;
-
-    this.$container = $('<div>')
+  control.onAdd = function (map) {
+    var $container = $('<div>')
       .attr('class', 'control-key');
 
-    var link = $('<a>')
+    $('<a>')
       .attr('class', 'control-button')
       .attr('href', '#')
-      .attr('title', 'Map Key')
+      .attr('title', I18n.t('javascripts.key.tooltip'))
       .html('<span class="icon key"></span>')
-      .appendTo(this.$container);
-  }
-});
+      .on('click', toggle)
+      .appendTo($container);
+
+    var $ui = $('<div>')
+      .attr('class', 'layers-ui');
+
+    $('<h2>')
+      .text(I18n.t('javascripts.key.title'))
+      .appendTo($ui);
+
+    var $section = $('<section>')
+      .appendTo($ui);
+
+    options.sidebar.addPane($ui);
+
+    $ui
+      .on('show', shown)
+      .on('hide', hidden);
+
+    function shown() {
+      map.on('zoomend baselayerchange', update);
+      $section.load('/key', update);
+    }
+
+    function hidden() {
+      map.off('zoomend baselayerchange', update);
+    }
+
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
+      options.sidebar.togglePane($ui);
+    }
+
+    function update() {
+      var layer = getMapBaseLayerId(map),
+        zoom = map.getZoom();
+
+      $('.mapkey-table-entry').each(function () {
+        var data = $(this).data();
+        if (layer == data.layer && zoom >= data.zoomMin && zoom <= data.zoomMax) {
+          $(this).show();
+        } else {
+          $(this).hide();
+        }
+      });
+    }
+
+    return $container[0];
+  };
 
-L.OSM.key = function(options) {
-  return new L.OSM.Key(options);
+  return control;
 };