Merge pull request #1158 from danzel/master

Add setZIndex to LayerGroup
This commit is contained in:
Vladimir Agafonkin 2012-11-19 12:41:28 -08:00
commit ab9f45baf1

View File

@ -82,6 +82,10 @@ L.LayerGroup = L.Class.extend({
method.call(context, this._layers[i]);
}
}
},
setZIndex: function (zIndex) {
return this.invoke('setZIndex', zIndex);
}
});