forked from antihax/antihax.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleaflet.rotatedmarker.js
63 lines (54 loc) · 2.08 KB
/
leaflet.rotatedmarker.js
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
(function() {
// save these original methods before they are overwritten
let proto_initIcon = L.Marker.prototype._initIcon;
let proto_setPos = L.Marker.prototype._setPos;
let oldIE = L.DomUtil.TRANSFORM === "msTransform";
L.Marker.addInitHook(function() {
let iconOptions = this.options.icon && this.options.icon.options;
let iconAnchor = iconOptions && this.options.icon.options.iconAnchor;
if (iconAnchor) {
iconAnchor = iconAnchor[0] + "px " + iconAnchor[1] + "px";
}
this.options.rotationOrigin =
this.options.rotationOrigin || iconAnchor || "center bottom";
this.options.rotationAngle = this.options.rotationAngle || 0;
// Ensure marker keeps rotated during dragging
this.on("drag", function(e) {
e.target._applyRotation();
});
});
L.Marker.include({
_initIcon: function() {
proto_initIcon.call(this);
},
_setPos: function(pos) {
proto_setPos.call(this, pos);
this._applyRotation();
},
_applyRotation: function() {
if (this.options.rotationAngle) {
this._icon.style[L.DomUtil.TRANSFORM + "Origin"] =
this.options.rotationOrigin;
if (oldIE) {
// for IE 9, use the 2D rotation
this._icon.style[L.DomUtil.TRANSFORM] =
"rotate(" + this.options.rotationAngle + "deg)";
} else {
// for modern browsers, prefer the 3D accelerated version
this._icon.style[L.DomUtil.TRANSFORM] +=
" rotateZ(" + this.options.rotationAngle + "deg)";
}
}
},
setRotationAngle: function(angle) {
this.options.rotationAngle = angle;
this.update();
return this;
},
setRotationOrigin: function(origin) {
this.options.rotationOrigin = origin;
this.update();
return this;
},
});
})();