-
Notifications
You must be signed in to change notification settings - Fork 83
/
drag-scroll-behavior.js
123 lines (116 loc) · 4.01 KB
/
drag-scroll-behavior.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
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
/**
* @fileOverview
* Класс поведения для скролла карты при перетаскивании на нее иконки метки
* с помощью Native HTML5 Drag and Drop API.
* @example
* @see http://dimik.github.com/ymaps/examples/drag-n-drop/
*/
/**
* @class
* @name DragScrollBehavior
* @borrows jQuery
* @see http://api.yandex.ru/maps/doc/jsapi/2.x/dg/concepts/map.xml#behaviors
*/
function DragScrollBehavior() {
// Менеджер опций
this.options = new ymaps.option.Manager();
// Менеджер событий
this.events = new ymaps.event.Manager();
}
DragScrollBehavior.prototype = {
/**
* @constructor
*/
constructor: DragScrollBehavior,
/**
* Включает поведение.
* @function
* @name DragScrollBehavior.enable
* @see http://api.yandex.ru/maps/doc/jsapi/2.x/ref/reference/IBehavior.xml#enable
*/
enable: function () {
this._$mapContainer.on('dragover', $.proxy(this._onDragOver, this));
},
/**
* Выключает поведение.
* @function
* @name DragScrollBehavior.disable
* @see http://api.yandex.ru/maps/doc/jsapi/2.x/ref/reference/IBehavior.xml#disable
*/
disable: function () {
this._$mapContainer.off('dragover');
},
/**
* Устанавливает поведению родителя.
* @function
* @name DragScrollBehavior.setParent
* @see http://api.yandex.ru/maps/doc/jsapi/2.x/ref/reference/IChildOnMap.xml#setParent
* @param {Object} parent Менеджер поведений.
* @returns {DragScrollBehavior} Ссылка на себя.
*/
setParent: function (parent) {
this._parent = parent;
this._map = parent.getMap();
this._$mapContainer = $(this._map.container.getElement());
this._timeoutId = null;
return this;
},
/**
* Возвращает родителя поведения.
* @function
* @name DragScrollBehavior.getParent
* @see http://api.yandex.ru/maps/doc/jsapi/2.x/ref/reference/IChildOnMap.xml#getParent
* @returns {Object} Менеджер поведений.
*/
getParent: function () {
return this._parent;
},
/**
* Обработчик события "dragover".
* @see http://www.w3.org/TR/2011/WD-html5-20110113/dnd.html#event-dragover
* @private
* @function
* @name DragScrollBehavior._onDragOver
* @param {Object} e Объект-событие jQuery.
*/
_onDragOver: function (e) {
if(!this._timeoutId) {
var self = this;
this._timeoutId = window.setTimeout(function () {
var coords = self._pageToGeo([e.originalEvent.pageX, e.originalEvent.pageY]);
self._map.panTo(coords, {
delay: 0,
timing: 'linear'
// callback: ymaps.util.bind(self._clearMove, self)
});
self._clearMove();
}, 30);
}
},
/**
* Отмена обработчика по таймауту.
* @private
* @function
* @name DragScrollBehavior._clearMove
*/
_clearMove: function () {
if(this._timeoutId) {
window.clearTimeout(this._timeoutId);
this._timeoutId = null;
}
},
/**
* Преобразует пиксельные координаты страницы в геокоординаты.
* @private
* @function
* @name DragScrollBehavior._pageToGeo
* @param {Number[]} coords Пиксельные координаты мыши при перетаскивании.
* @returns {Number[]} Геокоординаты в текущей проекции карты.
*/
_pageToGeo: function (coords) {
var projection = this._map.options.get('projection');
return projection.fromGlobalPixels(
this._map.converter.pageToGlobal(coords), this._map.getZoom()
);
}
};