Merge pull request #1466 from umap-project/fix-remove-tilelayer
Do not call AttributionControl._update for removed tile layer
This commit is contained in:
commit
8568159589
1 changed files with 3 additions and 1 deletions
|
@ -1250,8 +1250,10 @@ L.U.AttributionControl = L.Control.Attribution.extend({
|
|||
},
|
||||
|
||||
_update: function () {
|
||||
// Layer is no more on the map
|
||||
if (!this._map) return
|
||||
L.Control.Attribution.prototype._update.call(this)
|
||||
// Use our how container, so we can hide/show on small screens
|
||||
// Use our own container, so we can hide/show on small screens
|
||||
const credits = this._container.innerHTML
|
||||
this._container.innerHTML = ''
|
||||
const container = L.DomUtil.add(
|
||||
|
|
Loading…
Reference in a new issue