-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgmap-v3-geofence.js
516 lines (434 loc) · 11.9 KB
/
gmap-v3-geofence.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
(function() {
/**
* Default map options
*
* @type {{zoom: number, center: {lat: number, lng: number}, mapTypeId: string, mapId: string}}
*/
var options = {
zoom: 11,
center: {lat: 23.830372, lng: 90.411313},
mapTypeId: 'terrain',
mapId: 'mymap'
};
var selectId = document.getElementById.bind(document);
/**
* The Geofence constructor
* Initialize the map object
*
* @param opt
* @constructor
*/
this.Geofence = function(opt) {
this.options = Object.assign(options, opt);
this.map = new google.maps.Map(document.getElementById(this.options.mapId), {
zoom: this.options.zoom,
center: this.options.center,
mapTypeId: this.options.mapTypeId
});
}
// Public Methods
/**
* Draw polygon using coordinates
*
* @param coordinates
* @param options
* @returns {*}
*/
Geofence.prototype.draw = function(coordinates, options) {
var coords = coordinatesToLatLng(coordinates);
return draw(this.map, newPolygon(coords, options));
}
/**
* Get the polygon geo bounds
*
* @param polygon
* @returns {*}
*/
Geofence.prototype.getBounds = function(polygon) {
return getBounds(polygon);
}
/**
* Get the polygon coordinates
*
* @param polygon
* @returns {*}
*/
Geofence.prototype.getCoordinates = function(polygon) {
return getCoordinates(polygon);
}
/**
* Create infowindow on clicked position
*
* @param contentString
* @param event
* @returns {*}
*/
Geofence.prototype.createInfowindow = function(contentString, event) {
return newInfowindow(this.map, contentString, event);
}
/**
* Delete a polygon node
*
* @param event
* @param polygon
* @returns {*}
*/
Geofence.prototype.deleteNode = function(event, polygon) {
return deleteNode(event, polygon);
}
/**
* Get coordinates string
*
* @param polygon
* @returns {*}
*/
Geofence.prototype.getCoordinatesString = function(polygon) {
return getCoordinatesString(polygon);
}
/**
* Get coords array from coords string
*
* @param coordsString
* @returns {*}
*/
Geofence.prototype.stringToArray = function(coordsString) {
return stringToArray(coordsString);
}
/**
* Coordinates array to LatLng object
*
* @param coordinates
* @returns {Array}
*/
Geofence.prototype.coordinatesToLatLng = function (coordinates) {
return coordinatesToLatLng(coordinates);
}
/**
* Update polygon path
*
* @param polygon
* @param coords
* @returns {*}
*/
Geofence.prototype.updatePolygonPath = function (polygon, coords) {
return updatePolygonPath(polygon, coords);
}
/**
* Get all geofences
*
* @returns {*}
*/
Geofence.prototype.getGeofence = function() {
return getGeofence();
}
/**
* Delete a polygon
*
* @param polygon
*/
Geofence.prototype.delete = function(polygon) {
polygon.setMap(null);
}
/**
* Check wheather the dom object is ready or not
*
* @param object
* @param callback
* @returns {*}
*/
Geofence.prototype.onDomReady = function(object, callback) {
return onDomReady(object, callback);
}
/**
* Revert polygon to previous state
*
* @param polygon
* @param previousState
* @returns {*}
*/
Geofence.prototype.revert = function(polygon, previousState) {
return revert(polygon, previousState);
}
/**
* Handling all polygon events
*
* @param event
* @param objects
* @param callback
*/
Geofence.prototype.on = function(event, objects = [], callback) {
for (var i = 0; i < objects.length; i++) {
objects[i].addListener(event, callback);
}
}
/**
* Close an infoWindow
*
* @param infoWindow
*/
Geofence.prototype.close = function(infoWindow) {
if (infoWindow instanceof google.maps.InfoWindow) {
infoWindow.close();
}
}
/**
* Set polygon coordinates string to specific id
*
* @param polygon
* @param infoId
*/
Geofence.prototype.setInfo = function(polygon, infoId) {
selectId(infoId).value = getCoordinatesString(polygon);
}
/** ******************************************************
* Private function of plugin
** *************************************************** */
/**
* Draw a polygon on specific map
*
* @param map
* @param polygon
* @returns {*}
*/
function draw(map, polygon) {
polygon.setMap(map);
poygon = initializeEvents(polygon);
polygon.on = function(event, callback) {
polygon.addListener(event, callback);
};
return polygon;
}
/**
* Initialize the polygon object
*
* @param coords
* @param options
* @returns {google.maps.Polygon}
*/
function newPolygon(coords, options) {
// removeGeofenceByIds(polygonIds);
var geofenceOptions = {
strokeWeight: 1,
editable: true,
draggable: true
}
var previousState;
geofenceOptions.path = coords;
geofenceOptions = Object.assign(geofenceOptions, options);
var polygon = new google.maps.Polygon(geofenceOptions);
return polygon;
}
/**
* Initialize polygon events
*
* @param polygon
* @returns {*}
*/
function initializeEvents(polygon) {
polygon.addListener('click', function (event) {
var coords = coordinatesToLatLng(getCoordinates(polygon));
var match = coords.filter(function(coord) {
return coord.equals(event.latLng);
});
if (match.length >= 1) {
google.maps.event.trigger(this, 'nodeClick', event, this);
} else {
google.maps.event.trigger(this, 'polygonClick', event, this);
}
});
polygon.addListener('dragstart', function (event) {
google.maps.event.trigger(this, 'dragStart', event, this);
previousState = getCoordinates(polygon);
});
polygon.addListener('dragend', function (event) {
google.maps.event.trigger(this, 'dragEnd', event, this, previousState);
});
google.maps.event.addListener(polygon, 'mouseover', function () {
var self = this;
google.maps.event.addListener(polygon.getPath(), "insert_at", function () {
google.maps.event.trigger(self, 'insertAt', event, self);
});
google.maps.event.addListener(polygon.getPath(), "set_at", function () {
google.maps.event.trigger(self, 'setAt', event, self);
});
});
return polygon;
}
/**
* Update polygon MVC path array
*
* @param polygon
* @param coords
* @returns {*}
*/
function updatePolygonPath(polygon, coords) {
var map = polygon.map;
polygon.setMap(null);
var poly = newPolygon(coords);
polygon.setPaths(poly.getPath());
polygon.setMap(map);
return polygon;
}
/**
* Checking wheather the DOM object is reday
*
* @param object
* @param callback
*/
function onDomReady(object, callback) {
return google.maps.event.addListener(object, 'domready', callback);
}
/**
* Get the bounds object of a polygon
*
* @param polygon
* @returns {google.maps.LatLngBounds}
*/
function getBounds(polygon) {
var bounds = new google.maps.LatLngBounds();
var paths = polygon.getPaths();
for (var i = 0; i < paths.getLength(); i++) {
var path = paths.getAt(i);
for (var ii = 0; ii < path.getLength(); ii++) {
bounds.extend(path.getAt(ii));
}
}
return bounds;
}
/**
* Get bounds array of polygon object
*
* @param polygon
* @returns {[*,*,*,*]}
*/
function getBoundsArr(polygon) {
var bounds = getGeobounds(polygon);
var boundsArr = [
bounds.getNorthEast().lat(),
bounds.getNorthEast().lng(),
bounds.getSouthWest().lat(),
bounds.getSouthWest().lng()
];
return boundsArr;
}
/**
* Create a new infoWindow in specific map
*
* @param map
* @param contentString
* @param ev
* @returns {google.maps.InfoWindow}
*/
function newInfowindow(map, contentString, ev) {
var infoWindow = new google.maps.InfoWindow;
infoWindow.setContent(contentString);
infoWindow.setPosition(ev.latLng);
infoWindow.open(map);
return infoWindow;
}
/**
* Delete a polygon node
*
* @param event
* @param polygon
* @returns {*}
*/
function deleteNode(event, polygon) {
var polygonCoords = getNodes(polygon);
if (polygonCoords.length <= 3) {
throw new Error('Coordinates size must be greater than 3');
}
var coords = polygonCoords.filter(function(coord) {
return coord.equals(event.latLng) != true;
});
return updatePolygonPath(polygon, coords);
}
/**
* Revert a polygon to previous state
*
* @param polygon
* @param previousState
* @returns {*}
*/
function revert(polygon, previousState) {
var coords = coordinatesToLatLng(previousState);
return updatePolygonPath(polygon, coords);
}
/**
* Coords string to Array
*
* @param coordsString
* @returns {Array}
*/
function stringToArray(coordsString) {
return coordsString.split('\n').map(function(a) {
return a.split(',').map(function(b) {
return parseFloat(b);
});
});
}
/**
* Coordinates to LatLng
*
* @param coordinates
* @returns {Array}
*/
function coordinatesToLatLng(coordinates) {
var coords = [];
if (!Array.isArray(coordinates) || coordinates.length < 3) {
throw new Error('Coordinates size must be greater than 3');
}
for (var coordinate in coordinates) {
coords.push(new google.maps.LatLng(coordinates[coordinate][0], coordinates[coordinate][1]));
}
return coords;
}
/**
* Get coordinates of a polygon object
*
* @param polygon
* @returns {*|Array}
*/
function getCoordinates(polygon) {
var coordsArr = [];
for (var i = 0; i < polygon.getPath().getLength(); i++) {
coordsArr.push(polygon.getPath().getAt(i).toUrlValue(15).split(','));
}
return coordsArr;
}
/**
* Get coordinates string of a polygon object
*
* @param polygon
* @returns {string}
*/
function getCoordinatesString(polygon) {
var coordinates = getCoordinates(polygon);
var coordsString = '';
for (var i = 0; i < coordinates.length; i++) {
coordsString += coordinates[i][0] + ',' + coordinates[i][1] + '\n';
}
return coordsString;
}
/**
* Get polygon nodes
*
* @param polygon
* @returns {*}
*/
function getNodes(polygon) {
var nodes = [];
for (var i = polygon.getPath().length - 1; i >= 0; i--) {
nodes.push(polygon.getPath().getAt(i));
}
return nodes;
}
/**
* Get map options
*
* @returns {{zoom: number, center: {lat: number, lng: number}, mapTypeId: string, mapId: string}}
*/
function getOptions() {
return options;
}
}());