").append(layer.options.name))
+ .appendTo(buttonContainer);
- var div = $('')
- .appendTo(item);
+ map.whenReady(function () {
+ var miniMap = L.map(mapContainer[0], { attributionControl: false, zoomControl: false, keyboard: false })
+ .addLayer(new layer.constructor({ apikey: layer.options.apikey }));
- this._map.whenReady(function() {
- var map = L.map(div[0], {attributionControl: false, zoomControl: false})
- .setView(this._map.getCenter(), Math.max(this._map.getZoom() - 2, 0))
- .addLayer(new layer.constructor);
+ miniMap.dragging.disable();
+ miniMap.touchZoom.disable();
+ miniMap.doubleClickZoom.disable();
+ miniMap.scrollWheelZoom.disable();
- map.dragging.disable();
- map.touchZoom.disable();
- map.doubleClickZoom.disable();
- map.scrollWheelZoom.disable();
- }, this);
+ $ui
+ .on("show", shown)
+ .on("hide", hide);
- var label = $('')
- .text(layer.options.name)
- .appendTo(item);
+ function shown() {
+ miniMap.invalidateSize();
+ setView({ animate: false });
+ map.on("moveend", moved);
+ }
+
+ function hide() {
+ map.off("moveend", moved);
+ }
+
+ function moved() {
+ setView();
+ }
+
+ function setView(options) {
+ miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0), options);
+ }
+ });
- item.on('click', function() {
- this.options.layers.forEach(function(other) {
+ input.on("click", function () {
+ layers.forEach(function (other) {
if (other === layer) {
- this._map.addLayer(other);
+ map.addLayer(other);
} else {
- this._map.removeLayer(other);
+ map.removeLayer(other);
}
- }, this);
- }.bind(this));
+ });
+ map.fire("baselayerchange", { layer: layer });
+ });
- this._map.on('layeradd', function(e) {
- if (e.layer === layer) {
- item.addClass('active');
- }
- }).on('layerremove', function(e) {
- if (e.layer === layer) {
- item.removeClass('active');
- }
+ item.on("dblclick", toggle);
+
+ map.on("layeradd layerremove", function () {
+ input.prop("checked", map.hasLayer(layer));
});
- }, this);
+ });
- $(link).on('click', $.proxy(this.toggleLayers, this));
- },
+ if (OSM.STATUS !== "api_offline" && OSM.STATUS !== "database_offline") {
+ var overlaySection = $("")
+ .attr("class", "overlay-layers p-3")
+ .appendTo($ui);
- toggleLayers: function (e) {
- e.stopPropagation();
- e.preventDefault();
+ $("
")
+ .text(I18n.t("javascripts.map.layers.overlays"))
+ .attr("class", "text-body-secondary small mb-2")
+ .appendTo(overlaySection);
+
+ var overlays = $("