[Pkg-javascript-commits] [leaflet-markercluster] 398/479: Update build
Jonas Smedegaard
dr at jones.dk
Thu Oct 16 16:01:01 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 9b3bb2929fd8a450e0c43c1ddc54bba3acc50069
Author: danzel <danzel at localhost.geek.nz>
Date: Tue Jun 25 09:04:01 2013 +1200
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 4f1d7df..ae932c9 100644
--- a/dist/leaflet.markercluster-src.js
+++ b/dist/leaflet.markercluster-src.js
@@ -283,7 +283,11 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
}
}
- bounds.extend(this._nonPointGroup.getBounds());
+ //TODO: Can remove this isValid test when leaflet 0.6 is released
+ var nonPointBounds = this._nonPointGroup.getBounds();
+ if (nonPointBounds.isValid()) {
+ bounds.extend(nonPointBounds);
+ }
return bounds;
},
diff --git a/dist/leaflet.markercluster.js b/dist/leaflet.markercluster.js
index be50d1f..16a1a0b 100644
--- a/dist/leaflet.markercluster.js
+++ b/dist/leaflet.markercluster.js
@@ -3,4 +3,4 @@
https://github.com/Leaflet/Leaflet.markercluster
(c) 2012-2013, Dave Leaver, smartrak
*/
-!function(t,e){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animateAddingMarkers:!1,spiderfyDistanceMultiplier:1,polygonOptions:{}},initialize:function(t){L.Util.setOptions(this,t),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureG [...]
\ No newline at end of file
+!function(t,e){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animateAddingMarkers:!1,spiderfyDistanceMultiplier:1,polygonOptions:{}},initialize:function(t){L.Util.setOptions(this,t),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureG [...]
\ 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