- var control = L.control(options);
-
- control.onAdd = function (map) {
- var $container = $("<div>")
- .attr("class", "control-key");
-
- var button = $("<a>")
- .attr("class", "control-button")
- .attr("href", "#")
- .html("<span class=\"icon key\"></span>")
- .on("click", toggle)
- .appendTo($container);
-
- var $ui = $("<div>")
- .attr("class", "key-ui");
-
- $("<div>")
- .attr("class", "sidebar_heading")
- .appendTo($ui)
- .append(
- $("<button type='button' class='btn-close float-end mt-1'>")
- .attr("aria-label",I18n.t("javascripts.close"))
- .bind("click", toggle))
- .append(
- $("<h4>")
- .text(I18n.t("javascripts.key.title")));
+ var control = L.OSM.sidebarPane(options, "key", null, "javascripts.key.title");