[Pkg-javascript-commits] [leaflet-markercluster] 229/479: Update build
Jonas Smedegaard
dr at jones.dk
Thu Oct 16 16:00:34 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 7b065bd493ee39cad717e3f47fb56315ac523dbe
Author: danzel <danzel at localhost.geek.nz>
Date: Wed Sep 12 11:17:34 2012 +1200
Update build
---
dist/leaflet.markercluster-src.js | 46 ++++++++++++++++++++++++++++++---------
dist/leaflet.markercluster.js | 2 +-
2 files changed, 37 insertions(+), 11 deletions(-)
diff --git a/dist/leaflet.markercluster-src.js b/dist/leaflet.markercluster-src.js
index cdffcdc..f9fde84 100644
--- a/dist/leaflet.markercluster-src.js
+++ b/dist/leaflet.markercluster-src.js
@@ -156,17 +156,34 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
},
zoomToShowLayer: function (layer, callback) {
- layer.__parent.zoomToBounds();
- setTimeout(function () {
- if (layer._icon) {
- callback();
- } else {
- layer.__parent.spiderfy();
- setTimeout(function () {
+
+ var showMarker = function () {
+ if ((layer._icon || layer.__parent._icon) && !this._inZoomAnimation) {
+ this._map.off('moveend', showMarker, this);
+ this.off('animationend', showMarker, this);
+
+ if (layer._icon) {
callback();
- }, L.DomUtil.TRANSITION ? 250 : 0); //TODO: This is hardcoded based on the time to spiderfy
+ } else if (layer.__parent._icon) {
+ var afterSpiderfy = function () {
+ this.off('spiderfied', afterSpiderfy, this);
+ callback();
+ };
+
+ this.on('spiderfied', afterSpiderfy, this);
+ layer.__parent.spiderfy();
+ }
}
- }, L.DomUtil.TRANSITION ? 600 : 0); //TODO: This is hardcoded based on the leaflet time to zoom
+ };
+
+ if ((layer._icon || layer.__parent._icon) && this._map.getBounds().contains(layer.__parent._latlng)) {
+ //Layer or cluster is already visible
+ showMarker.call(this);
+ } else {
+ this._map.on('moveend', showMarker, this);
+ this.on('animationend', showMarker, this);
+ layer.__parent.zoomToBounds();
+ }
},
//Overrides FeatureGroup.onAdd
@@ -540,6 +557,7 @@ L.MarkerClusterGroup.include(!L.DomUtil.TRANSITION ? {
this._map._mapPane.className = this._map._mapPane.className.replace(' leaflet-cluster-anim', '');
}
this._inZoomAnimation--;
+ this.fire('animationend');
},
_animationZoomIn: function (previousZoomLevel, newZoomLevel) {
var me = this,
@@ -1372,6 +1390,7 @@ L.MarkerCluster.include(!L.DomUtil.TRANSITION ? {
m._spiderLeg = leg;
}
this.setOpacity(0.3);
+ group.fire('spiderfied');
},
_animationUnspiderfy: function () {
@@ -1488,6 +1507,7 @@ L.MarkerCluster.include(!L.DomUtil.TRANSITION ? {
setTimeout(function () {
group._animationEnd();
+ group.fire('spiderfied');
}, 250);
},
@@ -1572,7 +1592,13 @@ L.MarkerClusterGroup.include({
_spiderfierOnAdd: function () {
this._map.on('click', this._unspiderfyWrapper, this);
- this._map.on('zoomstart', this._unspiderfyZoomStart, this);
+
+ if (this._map.options.zoomAnimation) {
+ this._map.on('zoomstart', this._unspiderfyZoomStart, this);
+ } else {
+ //Browsers without zoomAnimation don't fire zoomstart
+ this._map.on('zoomend', this._unspiderfyWrapper, this);
+ }
if (L.Browser.svg && !L.Browser.touch) {
this._map._initPathRoot();
diff --git a/dist/leaflet.markercluster.js b/dist/leaflet.markercluster.js
index ccf2f7f..08dcf65 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,skipDuplicateAddTesting:!1,animateAddingMarkers:!1},initialize:function(e){L.Util.setOptions(this,e),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),L.FeatureGroup.prototype.initialize.call(this,[]),this._inZoomAn [...]
\ 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,skipDuplicateAddTesting:!1,animateAddingMarkers:!1},initialize:function(e){L.Util.setOptions(this,e),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),L.FeatureGroup.prototype.initialize.call(this,[]),this._inZoomAn [...]
\ 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