mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
fix: tilelayer plus icon where never displayed
We were testing the length of the `_layers` property, which where sliced to `maxShown` before…
This commit is contained in:
parent
c33adcf0e7
commit
ee7439a0f9
1 changed files with 2 additions and 1 deletions
|
@ -795,13 +795,14 @@ U.TileLayerControl = L.Control.IconLayers.extend({
|
|||
}
|
||||
})
|
||||
}
|
||||
this._allLayers = layers
|
||||
L.Control.IconLayers.prototype.setLayers.call(this, layers.slice(0, this.maxShown))
|
||||
if (this.map.selected_tilelayer) this.setActiveLayer(this.map.selected_tilelayer)
|
||||
},
|
||||
|
||||
_createLayerElements: function () {
|
||||
L.Control.IconLayers.prototype._createLayerElements.call(this)
|
||||
if (Object.keys(this._layers).length <= this.maxShown) return
|
||||
if (Object.keys(this._allLayers).length <= this.maxShown) return
|
||||
const lastRow = this._container.querySelector(
|
||||
'.leaflet-iconLayers-layersRow:last-child'
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue