SVG.VML
export var vmlCreate = (function () {
try {
document.namespaces.add("lvml", "urn:schemas-microsoft-com:vml");
return function (name) {
return document.createElement("<lvml:" + name + ' class="lvml">');
};
} catch (e) {}
return function (name) {
return document.createElement(
"<" + name + ' xmlns="urn:schemas-microsoft.com:vml" class="lvml">'
);
};
})();
export var vmlMixin = {
_initContainer: function () {
this._container = DomUtil.create("div", "leaflet-vml-container");
},
_update: function () {
if (this._map._animatingZoom) {
return;
}
Renderer.prototype._update.call(this);
this.fire("update");
},
_initPath: function (layer) {
var container = (layer._container = vmlCreate("shape"));
DomUtil.addClass(
container,
"leaflet-vml-shape " + (this.options.className || "")
);
container.coordsize = "1 1";
layer._path = vmlCreate("path");
container.appendChild(layer._path);
this._updateStyle(layer);
this._layers[Util.stamp(layer)] = layer;
},
_addPath: function (layer) {
var container = layer._container;
this._container.appendChild(container);
if (layer.options.interactive) {
layer.addInteractiveTarget(container);
}
},
_removePath: function (layer) {
var container = layer._container;
DomUtil.remove(container);
layer.removeInteractiveTarget(container);
delete this._layers[Util.stamp(layer)];
},
_updateStyle: function (layer) {
var stroke = layer._stroke,
fill = layer._fill,
options = layer.options,
container = layer._container;
container.stroked = !!options.stroke;
container.filled = !!options.fill;
if (options.stroke) {
if (!stroke) {
stroke = layer._stroke = vmlCreate("stroke");
}
container.appendChild(stroke);
stroke.weight = options.weight + "px";
stroke.color = options.color;
stroke.opacity = options.opacity;
if (options.dashArray) {
stroke.dashStyle = Util.isArray(options.dashArray)
? options.dashArray.join(" ")
: options.dashArray.replace(/( *, *)/g, " ");
} else {
stroke.dashStyle = "";
}
stroke.endcap = options.lineCap.replace("butt", "flat");
stroke.joinstyle = options.lineJoin;
} else if (stroke) {
container.removeChild(stroke);
layer._stroke = null;
}
if (options.fill) {
if (!fill) {
fill = layer._fill = vmlCreate("fill");
}
container.appendChild(fill);
fill.color = options.fillColor || options.color;
fill.opacity = options.fillOpacity;
} else if (fill) {
container.removeChild(fill);
layer._fill = null;
}
},
_updateCircle: function (layer) {
var p = layer._point.round(),
r = Math.round(layer._radius),
r2 = Math.round(layer._radiusY || r);
this._setPath(
layer,
layer._empty()
? "M0 0"
: "AL " + p.x + "," + p.y + " " + r + "," + r2 + " 0," + 65535 * 360
);
},
_setPath: function (layer, path) {
layer._path.v = path;
},
_bringToFront: function (layer) {
DomUtil.toFront(layer._container);
},
_bringToBack: function (layer) {
DomUtil.toBack(layer._container);
},
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
编辑 (opens new window)
上次更新: 2025/04/15, 08:40:23