-
Notifications
You must be signed in to change notification settings - Fork 83
/
polyline-vertex-counter.js
151 lines (131 loc) · 4.5 KB
/
polyline-vertex-counter.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/**
* @fileOverview
* Класс для посчета вершин ломаной при ее создании/редактировании.
* @example
* var polyline = new ymaps.Polyline([map.getCenter()]);
*
* map.geoObjects.add(polyline);
*
* new PolylineVertexCounter(polyline);
*
* polyline.editor
* .startEditing()
*
* polyline.editor
* .startDrawing();
*/
/**
* Класс для индексирования вершин ломаной.
* @class
* @name PolylineVertexCounter
* @param {ymaps.Polyline} polyline Полилиния.
*/
function PolylineVertexCounter(polyline) {
this.vertices = polyline.geometry.getCoordinates().slice(0);
this.placemarks = [];
this.map = polyline.getMap();
this.reIndex();
polyline.geometry.events.add('change', this.onGeometryChange, this);
}
/**
* Обработчик добавления вершины.
* @function
* @name PolylineVertexCounter.onVertexAdd
* @param {Array} geometry Новая геометрия полилинии.
*/
PolylineVertexCounter.prototype.onVertexAdd = function (geometry) {
var added = geometry.filter(function (vertex) {
return this.vertices.indexOf(vertex) === -1;
}, this)[0],
index = this.vertices.push(added) - 1;
this.createMarker(added, index);
this.reIndex();
};
/**
* Обработчик удаления вершины.
* @function
* @name PolylineVertexCounter.onVertexRemove
* @param {Array} geometry Новая геометрия полилинии.
*/
PolylineVertexCounter.prototype.onVertexRemove = function (geometry) {
var removed = this.vertices.filter(function (vertex) {
return geometry.indexOf(vertex) === -1;
})[0],
index = this.vertices.indexOf(removed);
this.removeMarker(index);
this.reIndex();
};
/**
* Обработчик перемещения вершины.
* @function
* @name PolylineVertexCounter.onVertexMove
* @param {Array} geometry Новая геометрия полилинии.
*/
PolylineVertexCounter.prototype.onVertexMove = function (geometry) {
var vertices = this.vertices,
moved = geometry.filter(function (vertex) {
return vertices.indexOf(vertex) === -1;
})[0],
index;
for(index = 0; geometry.indexOf(vertices[index]) > -1; index++); /* */
this.vertices[index] = moved;
this.reIndex();
};
/**
* Обработчик изменения геометрии.
* @function
* @name PolylineVertexCounter.onGeometryChange
* @param {ymaps.Event} e Объект-событие.
*/
PolylineVertexCounter.prototype.onGeometryChange = function (e) {
var coordinates = e.get('newCoordinates'),
newLength = coordinates.length,
oldLength = e.get('oldCoordinates').length;
// Если добавили вершину.
if(newLength > oldLength) {
this.onVertexAdd(coordinates);
}
// Если удалили вершину.
else if(oldLength > newLength) {
this.onVertexRemove(coordinates);
}
// Если переместили вершину.
else {
this.onVertexMove(coordinates);
}
};
/**
* Создание маркера-индекса.
* @function
* @name PolylineVertexCounter.createMarker
* @param {Array} vertex Точка вершины для которой создаем маркер.
* @param {Number} index Индекс вершины для которой создаем маркер.
*/
PolylineVertexCounter.prototype.createMarker = function (vertex, index) {
var placemark = new ymaps.Placemark(vertex);
this.map.geoObjects.add(placemark);
return this.placemarks[index] = placemark;
};
/**
* Удаление маркера-индекса.
* @function
* @name PolylineVertexCounter.removeMarker
* @param {Number} index Индекс вершины для которой удаляем маркер.
*/
PolylineVertexCounter.prototype.removeMarker = function (index) {
var placemark = this.placemarks.splice(index, 1)[0];
this.vertices.splice(index, 1);
this.map.geoObjects.remove(placemark);
};
/**
* Переиндексирование вершин полилинии.
* @function
* @name PolylineVertexCounter.reIndex
*/
PolylineVertexCounter.prototype.reIndex = function () {
this.vertices.forEach(function (vertex, index) {
var placemark = this.placemarks[index] || this.createMarker(vertex, index);
placemark.properties.set('iconContent', index);
placemark.geometry.setCoordinates(vertex);
}, this);
};