openstreetmap-website/app/assets/javascripts/leaflet.sidebar.js
2024-07-04 18:09:48 +04:00

57 lines
1.2 KiB
JavaScript

L.OSM.sidebar = function (selector) {
var control = {},
sidebar = $(selector),
current = $(),
currentButton = $(),
map;
control.addTo = function (_) {
map = _;
return control;
};
control.addPane = function (pane) {
pane
.hide()
.appendTo(sidebar);
};
control.togglePane = function (pane, button) {
var paneWidth = 250;
current
.hide()
.trigger("hide");
currentButton
.removeClass("active");
if (current === pane) {
if ($("html").attr("dir") === "rtl") {
map.panBy([-paneWidth, 0], { animate: false });
}
$(sidebar).hide();
$("#content").addClass("overlay-right-sidebar");
current = currentButton = $();
} else {
$(sidebar).show();
$("#content").removeClass("overlay-right-sidebar");
current = pane;
currentButton = button || $();
if ($("html").attr("dir") === "rtl") {
map.panBy([paneWidth, 0], { animate: false });
}
}
map.invalidateSize({ pan: false, animate: false });
current
.show()
.trigger("show");
currentButton
.addClass("active");
};
return control;
};