L.OSM.layers = function (options) {
- var control = L.control(options);
+ var control = L.OSM.sidebarPane(options);
control.onAdd = function (map) {
var layers = options.layers;
var $container = $("<div>")
.attr("class", "control-layers");
- var button = $("<a>")
- .attr("class", "control-button")
- .attr("href", "#")
- .attr("title", I18n.t("javascripts.map.layers.title"))
- .html("<span class=\"icon layers\"></span>")
- .on("click", toggle)
+ var button = this.makeButton("layers", "javascripts.map.layers.title", toggle)
.appendTo($container);
- var $ui = $("<div>")
- .attr("class", "layers-ui");
-
- $("<div>")
- .attr("class", "sidebar_heading")
- .appendTo($ui)
- .append(
- $("<span>")
- .text(I18n.t("javascripts.close"))
- .attr("class", "icon close")
- .bind("click", toggle))
- .append(
- $("<h4>")
- .text(I18n.t("javascripts.map.layers.header")));
+ var $ui = this.makeUI("layers-ui", "javascripts.map.layers.header", toggle);
var baseSection = $("<div>")
.attr("class", "section base-layers")
}
$(item).attr("class", disabled ? "disabled" : "");
- item.attr("data-original-title", disabled ?
+ item.attr("data-bs-original-title", disabled ?
I18n.t("javascripts.site.map_" + name + "_zoom_in_tooltip") : "");
});
};