Update changelog and build

This commit is contained in:
danzel
2012-12-06 13:23:00 +13:00
parent 73ae0e9a9b
commit c01050fd85
3 changed files with 8 additions and 4 deletions
+4
View File
@@ -9,11 +9,15 @@ Leaflet.markercluster
* Work better with custom projections (by [@andersarstrand](https://github.com/andersarstrand)) [#74](https://github.com/danzel/Leaflet.markercluster/issues/74)
* Add custom getBounds that works (Reported by [@2803media](https://github.com/2803media))
* Allow spacing spiderfied icons further apart (Reported by [@stevevance](https://github.com/stevevance)) [#100](https://github.com/danzel/Leaflet.markercluster/issues/100)
* Add custom eachLayer that works (Reported by [@cilogi](https://github.com/cilogi)) [#102](https://github.com/danzel/Leaflet.markercluster/issues/102)
### Bugfixes
* Fix singleMarkerMode when you aren't on the map (by [@duncanparkes](https://github.com/duncanparkes)) [#77](https://github.com/danzel/Leaflet.markercluster/issues/77)
* Fix clearLayers when you aren't on the map (by [@duncanparkes](https://github.com/duncanparkes)) [#79](https://github.com/danzel/Leaflet.markercluster/issues/79)
* IE10 Bug fix (Reported by [@theLundquist](https://github.com/theLundquist)) [#86](https://github.com/danzel/Leaflet.markercluster/issues/86)
* Fixes for hasLayer after removing a layer (Reported by [@cvisto](https://github.com/cvisto)) [#44](https://github.com/danzel/Leaflet.markercluster/issues/44)
## 0.2 (2012-10-11)
+3 -3
View File
@@ -238,7 +238,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
},
//Don't override LayerGroup.eachLayer, but provide the same functionality for external users
eachChildLayer: function (method, context) {
eachLayer: function (method, context) {
var markers = this._needsClustering.slice(),
i;
@@ -305,7 +305,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
//Overrides FeatureGroup.onAdd
onAdd: function (map) {
L.FeatureGroup.prototype.onAdd.call(this, map);
this._map = map;
if (!this._gridClusters) {
this._generateInitialClusters();
@@ -354,7 +354,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
this._spiderfierOnRemove();
}
L.FeatureGroup.prototype.onRemove.call(this, map);
this._map = null;
//Clean up all the layers we added to the map
for (var i in this._layers) {
+1 -1
View File
File diff suppressed because one or more lines are too long