X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5e9ab5bc5edb63b7ab7719fa989a18f52e3637a2..HEAD:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 09cf1cf60..a7a2335f3 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -1,156 +1,154 @@ -L.OSM.Layers = L.Control.extend({ - onAdd: function (map) { - this._map = map; - this._initLayout(); - return this.$container[0]; - }, - - _initLayout: function () { - var map = this._map, - layers = this.options.layers; - - this.$container = $('
') - .attr('class', 'control-layers'); - - var link = $('') - .attr('class', 'control-button') - .attr('href', '#') - .attr('title', 'Layers') - .html('') - .appendTo(this.$container); - - if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') { - this.$ui = $('
') - .attr('class', 'layers-ui') - .appendTo(this.options.uiPane); - - $('

') - .text(I18n.t('javascripts.map.layers.header')) - .appendTo(this.$ui); - - var overlaySection = $('
') - .addClass('overlay-layers') - .appendTo(this.$ui); - - $('

') - .text(I18n.t('javascripts.map.layers.overlays')) - .appendTo(overlaySection); +L.OSM.layers = function (options) { + var control = L.OSM.sidebarPane(options, "layers", "javascripts.map.layers.title", "javascripts.map.layers.header"); - var list = $('

    ') - .appendTo(overlaySection); + control.onAddPane = function (map, button, $ui, toggle) { + var layers = options.layers; - function addOverlay(layer, name) { - var item = $('
  • ') - .appendTo(list); + var baseSection = $("
    ") + .attr("class", "base-layers d-grid gap-3 p-3 border-bottom border-secondary-subtle") + .appendTo($ui); - var label = $('