mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
Merge pull request #2100 from umap-project/fix-tilelayer-plus-button
fix: tilelayer plus icon were never displayed
This commit is contained in:
commit
185cc65f68
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))
|
L.Control.IconLayers.prototype.setLayers.call(this, layers.slice(0, this.maxShown))
|
||||||
if (this.map.selected_tilelayer) this.setActiveLayer(this.map.selected_tilelayer)
|
if (this.map.selected_tilelayer) this.setActiveLayer(this.map.selected_tilelayer)
|
||||||
},
|
},
|
||||||
|
|
||||||
_createLayerElements: function () {
|
_createLayerElements: function () {
|
||||||
L.Control.IconLayers.prototype._createLayerElements.call(this)
|
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(
|
const lastRow = this._container.querySelector(
|
||||||
'.leaflet-iconLayers-layersRow:last-child'
|
'.leaflet-iconLayers-layersRow:last-child'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue