Added 'layeradd' and 'layerremove' events to LayerGroup.
This commit is contained in:
parent
3ae809e7c9
commit
6c4221fe04
@ -24,6 +24,8 @@ L.LayerGroup = L.Class.extend({
|
||||
this._map.addLayer(layer);
|
||||
}
|
||||
|
||||
this.fire('layeradd', { layer: layer });
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
@ -36,6 +38,8 @@ L.LayerGroup = L.Class.extend({
|
||||
this._map.removeLayer(layer);
|
||||
}
|
||||
|
||||
this.fire('layerremove', { layer: layer });
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user