Skip to content

Commit a101500

Browse files
committed
0.3.3
1 parent ecf4211 commit a101500

4 files changed

+8
-4
lines changed

dist/leaflet-layerjson.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/leaflet-layerjson.src.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Leaflet JSON Layer v0.3.2 - 2019-12-27
2+
* Leaflet JSON Layer v0.3.3 - 2019-12-27
33
*
44
* Copyright 2019 Stefano Cudini
55
@@ -350,6 +350,8 @@ L.LayerJSON = L.FeatureGroup.extend({
350350
for (var c in this._markersCache) {
351351
if(!jsonbyhash[ this._markersCache[c]._cacheId ])
352352
this.removeLayer(this._markersCache[c]);
353+
else
354+
this.addLayer(this._markersCache[c]);
353355
}
354356
}
355357
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "leaflet-layerjson",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "A Dynamic Leaflet Layer that load/filter dinamically JSON data from Ajax/Jsonp, with caching",
55
"repository": {
66
"type": "git",

src/leaflet-layerjson.js

+2
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,8 @@ L.LayerJSON = L.FeatureGroup.extend({
334334
for (var c in this._markersCache) {
335335
if(!jsonbyhash[ this._markersCache[c]._cacheId ])
336336
this.removeLayer(this._markersCache[c]);
337+
else
338+
this.addLayer(this._markersCache[c]);
337339
}
338340
}
339341
},

0 commit comments

Comments
 (0)