]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/leaflet.key.js
Port map key to new UI
[rails.git] / app / assets / javascripts / leaflet.key.js
index 5756f0c4179b6572a0f1c2bf18e08d228b26bb79..4906cfcff67d8ae874c1e2fc5f92d027289ebfeb 100644 (file)
@@ -1,4 +1,4 @@
-L.OSM.key = function(options) {
+L.OSM.key = function (options) {
   var control = L.control(options);
 
   control.onAdd = function (map) {
@@ -8,10 +8,55 @@ L.OSM.key = function(options) {
     $('<a>')
       .attr('class', 'control-button')
       .attr('href', '#')
-      .attr('title', 'Map Key')
+      .attr('title', I18n.t("javascripts.key.tooltip"))
       .html('<span class="icon key"></span>')
+      .on('click', toggle)
       .appendTo($container);
 
+    var $ui = $('<div>')
+      .attr('class', 'layers-ui')
+      .appendTo(options.uiPane);
+
+    $('<h2>')
+      .text(I18n.t('javascripts.key.title'))
+      .appendTo($ui);
+
+    var $section = $('<section>')
+      .appendTo($ui);
+
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
+
+      var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+
+      if ($ui.is(':visible')) {
+        $(options.uiPane).hide();
+        controlContainer.css({paddingRight: '0'});
+        map.off("zoomend baselayerchange", update);
+      } else {
+        $(options.uiPane).show();
+        controlContainer.css({paddingRight: '200px'});
+        map.on("zoomend baselayerchange", update);
+        $section.load('/key', update);
+      }
+    }
+
+    function update() {
+      var mapLayer = getMapBaseLayerId(map),
+        mapZoom = map.getZoom();
+
+      $(".mapkey-table-entry").each(function () {
+        var data = $(this).data();
+
+        if (mapLayer == data.layer && mapZoom >= data.zoomMin && mapZoom <= data.zoomMax) {
+          $(this).show();
+        } else {
+          $(this).hide();
+        }
+      });
+    }
+
     return $container[0];
   };