openstreetmap-website/app/assets/javascripts/leaflet.note.js
2025-02-09 06:51:56 +01:00

34 lines
935 B
JavaScript

L.OSM.note = function (options) {
var control = L.control(options);
control.onAdd = function (map) {
var $container = $("<div>")
.attr("class", "control-note");
var link = $("<a>")
.attr("class", "control-button")
.attr("href", "#")
.html("<span class=\"icon note\"></span>")
.appendTo($container);
map.on("zoomend", update);
function update() {
var wasDisabled = link.hasClass("disabled"),
isDisabled = OSM.STATUS === "database_offline" || map.getZoom() < 12;
link
.toggleClass("disabled", isDisabled)
.attr("data-bs-original-title", I18n.t(isDisabled ?
"javascripts.site.createnote_disabled_tooltip" :
"javascripts.site.createnote_tooltip"));
if (isDisabled === wasDisabled) return;
link.trigger(isDisabled ? "disabled" : "enabled");
}
update();
return $container[0];
};
return control;
};