Leaflet/src/dom/Draggable.js

130 lines
3.4 KiB
JavaScript
Raw Normal View History

/*
* L.Draggable allows you to add dragging capabilities to any element. Supports mobile devices too.
*/
2010-09-16 21:05:55 +08:00
L.Draggable = L.Class.extend({
includes: L.Mixin.Events,
statics: {
2011-06-18 00:40:27 +08:00
START: L.Browser.touch ? 'touchstart' : 'mousedown',
END: L.Browser.touch ? 'touchend' : 'mouseup',
MOVE: L.Browser.touch ? 'touchmove' : 'mousemove',
TAP_TOLERANCE: 15
2010-09-16 21:05:55 +08:00
},
initialize: function(element, dragStartTarget) {
this._element = element;
this._dragStartTarget = dragStartTarget || element;
},
enable: function() {
if (this._enabled) { return; }
L.DomEvent.addListener(this._dragStartTarget, L.Draggable.START, this._onDown, this);
this._enabled = true;
},
disable: function() {
if (!this._enabled) { return; }
L.DomEvent.removeListener(this._dragStartTarget, L.Draggable.START, this._onDown);
this._enabled = false;
},
2011-03-22 01:09:43 +08:00
2010-09-16 21:05:55 +08:00
_onDown: function(e) {
2010-09-21 21:10:31 +08:00
if (e.shiftKey || ((e.which != 1) && (e.button != 1) && !e.touches)) { return; }
2010-09-16 21:05:55 +08:00
if (e.touches && e.touches.length > 1) { return; }
var first = (e.touches && e.touches.length == 1 ? e.touches[0] : e);
L.DomEvent.preventDefault(e);
if (L.Browser.touch) {
first.target.className += ' leaflet-active';
}
2010-09-16 21:05:55 +08:00
2010-12-16 01:55:57 +08:00
this._moved = false;
2011-03-22 01:09:43 +08:00
L.DomUtil.disableTextSelection();
2010-09-16 21:05:55 +08:00
this._setMovingCursor();
2011-06-18 00:40:27 +08:00
this._startPos = this._newPos = L.DomUtil.getPosition(this._element);
this._startPoint = new L.Point(first.clientX, first.clientY);
2010-09-16 21:05:55 +08:00
L.DomEvent.addListener(document, L.Draggable.MOVE, this._onMove, this);
L.DomEvent.addListener(document, L.Draggable.END, this._onUp, this);
},
_onMove: function(e) {
if (e.touches && e.touches.length > 1) { return; }
L.DomEvent.preventDefault(e);
var first = (e.touches && e.touches.length == 1 ? e.touches[0] : e);
2010-09-16 21:05:55 +08:00
2010-09-21 20:48:31 +08:00
if (!this._moved) {
2010-09-16 21:05:55 +08:00
this.fire('dragstart');
2010-09-21 20:48:31 +08:00
this._moved = true;
2010-09-16 21:05:55 +08:00
}
var newPoint = new L.Point(first.clientX, first.clientY);
this._newPos = this._startPos.add(newPoint).subtract(this._startPoint);
L.Util.requestAnimFrame(this._updatePosition, this, true);
2010-09-16 21:05:55 +08:00
this.fire('drag');
},
2010-09-21 23:36:00 +08:00
_updatePosition: function() {
L.DomUtil.setPosition(this._element, this._newPos);
},
_onUp: function(e) {
if (e.changedTouches) {
var first = e.changedTouches[0],
el = first.target,
2011-06-18 00:40:27 +08:00
dist = (this._newPos && this._newPos.distanceTo(this._startPos)) || 0;
el.className = el.className.replace(' leaflet-active', '');
if (dist < L.Draggable.TAP_TOLERANCE) {
this._simulateEvent('click', first);
}
}
2011-03-22 01:09:43 +08:00
L.DomUtil.enableTextSelection();
2010-09-16 21:05:55 +08:00
this._restoreCursor();
L.DomEvent.removeListener(document, L.Draggable.MOVE, this._onMove);
L.DomEvent.removeListener(document, L.Draggable.END, this._onUp);
2010-09-21 21:10:31 +08:00
if (this._moved) {
this.fire('dragend');
}
},
_removeActiveClass: function(el) {
2010-09-16 21:05:55 +08:00
},
_setMovingCursor: function() {
this._bodyCursor = document.body.style.cursor;
document.body.style.cursor = 'move';
},
_restoreCursor: function() {
document.body.style.cursor = this._bodyCursor;
},
_simulateEvent: function(type, e) {
var simulatedEvent = document.createEvent('MouseEvent');
simulatedEvent.initMouseEvent(
type, true, true, window, 1,
e.screenX, e.screenY,
e.clientX, e.clientY,
false, false, false, false, 0, null);
e.target.dispatchEvent(simulatedEvent);
2010-09-16 21:05:55 +08:00
}
});