')
+ var $section = $("")
+ .attr("class", "section")
.appendTo($ui);
+ options.sidebar.addPane($ui);
+
+ $ui
+ .on("show", shown)
+ .on("hide", hidden);
+
+ map.on("baselayerchange", updateButton);
+
+ updateButton();
+
+ 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();
-
- 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);
+ if (!button.hasClass("disabled")) {
+ options.sidebar.togglePane($ui, button);
}
+ $(".leaflet-control .control-button").tooltip("hide");
+ }
+
+ function updateButton() {
+ var disabled = ["mapnik", "cyclemap"].indexOf(map.getMapBaseLayerId()) === -1;
+ button
+ .toggleClass("disabled", disabled)
+ .attr("data-original-title",
+ I18n.t(disabled ?
+ "javascripts.key.tooltip_disabled" :
+ "javascripts.key.tooltip"));
}
function update() {
- var mapLayer = getMapBaseLayerId(map),
- mapZoom = map.getZoom();
+ var layer = map.getMapBaseLayerId(),
+ zoom = map.getZoom();
$(".mapkey-table-entry").each(function () {
var data = $(this).data();
-
- if (mapLayer == data.layer && mapZoom >= data.zoomMin && mapZoom <= data.zoomMax) {
+ if (layer === data.layer && zoom >= data.zoomMin && zoom <= data.zoomMax) {
$(this).show();
} else {
$(this).hide();