Leaflet/src/layer/FeatureGroup.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

/*
* L.FeatureGroup extends L.LayerGroup by introducing mouse events and bindPopup method shared between a group of layers.
*/
L.FeatureGroup = L.LayerGroup.extend({
includes: L.Mixin.Events,
2011-12-09 22:51:31 +08:00
addLayer: function (layer) {
2012-07-05 19:45:06 +08:00
layer.on('click dblclick mouseover mouseout', this._propagateEvent, this);
2012-02-15 19:17:25 +08:00
L.LayerGroup.prototype.addLayer.call(this, layer);
2011-06-10 21:24:49 +08:00
if (this._popupContent && layer.bindPopup) {
layer.bindPopup(this._popupContent);
}
2012-07-05 19:45:06 +08:00
return this;
},
removeLayer: function (layer) {
2012-07-05 19:45:06 +08:00
layer.off('click dblclick mouseover mouseout', this._propagateEvent, this);
L.LayerGroup.prototype.removeLayer.call(this, layer);
2012-07-05 19:45:06 +08:00
return this.invoke('unbindPopup');
},
2011-12-09 22:51:31 +08:00
bindPopup: function (content) {
2011-06-10 21:24:49 +08:00
this._popupContent = content;
return this.invoke('bindPopup', content);
},
setStyle: function (style) {
return this.invoke('setStyle', style);
},
getBounds: function () {
var bounds = new L.LatLngBounds();
this._iterateLayers(function (layer) {
bounds.extend(layer instanceof L.Marker ? layer.getLatLng() : layer.getBounds());
}, this);
return bounds;
},
2011-12-09 22:51:31 +08:00
_propagateEvent: function (e) {
2012-02-15 19:17:25 +08:00
e.layer = e.target;
e.target = this;
2012-02-15 19:17:25 +08:00
this.fire(e.type, e);
}
});
2012-07-05 19:45:06 +08:00
L.featureGroup = function (layers) {
return new L.FeatureGroup(layers);
};