[Pkg-javascript-commits] [leaflet-markercluster] 286/479: Update build
Jonas Smedegaard
dr at jones.dk
Thu Oct 16 16:00:40 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository leaflet-markercluster.
commit 37d4f369a8a55b07b971a1abddf778b7931658e8
Author: danzel <danzel at localhost.geek.nz>
Date: Fri Nov 9 15:53:34 2012 +1300
Update build
---
dist/leaflet.markercluster-src.js | 6 +++++-
dist/leaflet.markercluster.js | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/dist/leaflet.markercluster-src.js b/dist/leaflet.markercluster-src.js
index 4aa326e..7185ff5 100644
--- a/dist/leaflet.markercluster-src.js
+++ b/dist/leaflet.markercluster-src.js
@@ -290,7 +290,11 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
}
for (var i = 0, l = this._needsClustering.length; i < l; i++) {
- this._addLayer(this._needsClustering[i], this._maxZoom);
+ var layer = this._needsClustering[i];
+ if (layer.__parent) {
+ continue;
+ }
+ this._addLayer(layer, this._maxZoom);
}
this._needsClustering = [];
diff --git a/dist/leaflet.markercluster.js b/dist/leaflet.markercluster.js
index 472e6ed..35789bb 100644
--- a/dist/leaflet.markercluster.js
+++ b/dist/leaflet.markercluster.js
@@ -3,4 +3,4 @@
Leaflet.markercluster is an open-source JavaScript library for Marker Clustering on leaflet powered maps.
https://github.com/danzel/Leaflet.markercluster
*/
-(function(e,t){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,animateAddingMarkers:!1,polygonOptions:{}},initialize:function(e){L.Util.setOptions(this,e),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),L.FeatureGroup.prototype.initialize.call(this,[]),this._inZoomAnimation=0 [...]
\ No newline at end of file
+(function(e,t){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,animateAddingMarkers:!1,polygonOptions:{}},initialize:function(e){L.Util.setOptions(this,e),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),L.FeatureGroup.prototype.initialize.call(this,[]),this._inZoomAnimation=0 [...]
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet-markercluster.git
More information about the Pkg-javascript-commits
mailing list