Fix _bringToFront/Back implementation for VML renderer

This commit is contained in:
kerryarts 2014-11-21 09:41:02 +13:00
parent 2bd788a7da
commit 0daf28fb4f

View File

@ -116,6 +116,14 @@ L.SVG.include(!L.Browser.vml ? {} : {
_setPath: function (layer, path) {
layer._path.v = path;
},
_bringToFront: function (layer) {
L.DomUtil.toFront(layer._container);
},
_bringToBack: function (layer) {
L.DomUtil.toBack(layer._container);
}
});