Merge pull request #1368 from umap-project/datalyerscontrol-map
Fix map reference in DataLayersControl
This commit is contained in:
commit
b0d135a759
1 changed files with 2 additions and 2 deletions
|
@ -514,7 +514,7 @@ L.U.DataLayersControl = L.Control.extend({
|
||||||
update: function () {
|
update: function () {
|
||||||
if (this._datalayers_container && this._map) {
|
if (this._datalayers_container && this._map) {
|
||||||
this._datalayers_container.innerHTML = ''
|
this._datalayers_container.innerHTML = ''
|
||||||
this._map.eachDataLayerReverse(function (datalayer) {
|
this.map.eachDataLayerReverse(function (datalayer) {
|
||||||
this.addDataLayer(this._datalayers_container, datalayer)
|
this.addDataLayer(this._datalayers_container, datalayer)
|
||||||
}, this)
|
}, this)
|
||||||
}
|
}
|
||||||
|
@ -525,7 +525,7 @@ L.U.DataLayersControl = L.Control.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
collapse: function () {
|
collapse: function () {
|
||||||
if (this._map.options.datalayersControl === 'expanded') return
|
if (this.map.options.datalayersControl === 'expanded') return
|
||||||
L.DomUtil.removeClass(this._container, 'expanded')
|
L.DomUtil.removeClass(this._container, 'expanded')
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue