Fix restauring full umap with remoteData
The check about umap_id was before isLoaded and hasDataLoaded split, so I guess (hope) it's useless here. A bit of history:217f2fcb15
2ea27c87f6
This commit is contained in:
parent
58cee72915
commit
ae6f9fda57
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ L.U.DataLayer = L.Evented.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
hasDataLoaded: function () {
|
hasDataLoaded: function () {
|
||||||
return !this.umap_id || this._geojson !== null;
|
return this._geojson !== null;
|
||||||
},
|
},
|
||||||
|
|
||||||
setUmapId: function (id) {
|
setUmapId: function (id) {
|
||||||
|
|
Loading…
Reference in a new issue