-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
563 lines (518 loc) · 17.3 KB
/
index.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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
// IIFE (Imediately Invoked Function Expression)
(function () {
var map;
var randomCoord;
var pos;
var directionsService;
var directionsDisplay;
var infoWindow;
var drawingManager;
var mapStartCount = 0;
function aboutMap(){
console.log("welcome to my app")
initMap();
$('.about').append("<p>This app functions on geolocation services. Please allow to move forward. </p>")
}
function fullMapOff(){
$('#map').hide();
$('#right-panel').hide();
$('#get-lost-button').hide();
$('#tutorial-button').hide();
$('#floating-panel').hide();
}
function tutorialNavigation(){
fullMapOff()
instructionsPage();
}
function getLostButton(){
$('#yes-button').on('click', function(){
if(mapStartCount>0){
$('.about').hide();
$('#map').show();
$('#right-panel').show();
$('#get-lost-button').show();
$('#tutorial-button').show();
$('#floating-panel').show();
}else{
$('.about').hide();
$('#map').show();
}
});
}
function instructionsPage(){
console.log("how you use this");
$('.about').replaceWith(
`<section class='about'>
<div class='about-nav'>
<button type="button" class="btn draw-border" id="yes-button" style="align-self:center">get lost</button>
</div>
<main class='about-main'>
<h2 name="tutorial heading">First some instructions:</h2>
<img class="gif-left" src="squareExample.gif" alt="example of drawing tool" style="align-self:center">
<p>You can use the square drawing tool to select an area to get lost within on the map.</p>
<img class="gif-right" src="squareGetLost.gif" alt="example of the get lost button" style="align-self:center">
<p>A button to get lost will apear when you have drawn the area.You can edit the area with the hand tool before clicking the get lost button.</p>
<img class="gif-left" src="squareNewRoute.gif" alt="example of how to use new route" style="align-self:center">
<p>The travel mode can be edited with a drop down menu. You can use the small "get lost" button to give you a new random route or click on the tutorial button to get back to this page.</p>
</main>
</section>`);
$('.about').show();
getLostButton();
}
function enterMap(){
$('#yes-button').on('click', function(){
$('.open-question').hide("slow");
instructionsPage();
})
$('#no-button').on('click', function(){
$('.open-question').hide("slow");
$('.on-no-page').show("slow");
})
$('#yes-button-two').on('click', function(){
$('.on-no-page').hide("slow");
instructionsPage();
})
$('#get-lost-again').on('click', function(){
$('#map').hide('slow');
$('.on-no-page').show('slow');
})
}
function initMap() {
//direction services
directionsService = new google.maps.DirectionsService;
directionsDisplay = new google.maps.DirectionsRenderer;
// set value a map variable to the map you want to render
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 0, lng: 180},
//default zoom
zoom: 12,
// mapTypeId
mapTypeId: 'terrain',
mapTypeControl: false,
fullscreenControl: false,
streetviewContral: false,
styles:[
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"hue": "#165c64"
},
{
"saturation": 34
},
{
"lightness": -69
},
{
"visibility": "on"
}
]
},
{
"featureType": "landscape",
"elementType": "geometry",
"stylers": [
{
"hue": "#b7caaa"
},
{
"saturation": -14
},
{
"lightness": -18
},
{
"visibility": "on"
}
]
},
{
"featureType": "landscape.man_made",
"elementType": "all",
"stylers": [
{
"hue": "#cbdac1"
},
{
"saturation": -6
},
{
"lightness": -9
},
{
"visibility": "on"
}
]
},
{
"featureType": "road",
"elementType": "geometry",
"stylers": [
{
"hue": "#8d9b83"
},
{
"saturation": -89
},
{
"lightness": -12
},
{
"visibility": "on"
}
]
},
{
"featureType": "road.highway",
"elementType": "geometry",
"stylers": [
{
"hue": "#d4dad0"
},
{
"saturation": -88
},
{
"lightness": 54
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "road.arterial",
"elementType": "geometry",
"stylers": [
{
"hue": "#bdc5b6"
},
{
"saturation": -89
},
{
"lightness": -3
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "road.local",
"elementType": "geometry",
"stylers": [
{
"hue": "#bdc5b6"
},
{
"saturation": -89
},
{
"lightness": -26
},
{
"visibility": "on"
}
]
},
{
"featureType": "poi",
"elementType": "geometry",
"stylers": [
{
"hue": "#c17118"
},
{
"saturation": 61
},
{
"lightness": -45
},
{
"visibility": "on"
}
]
},
{
"featureType": "poi.park",
"elementType": "all",
"stylers": [
{
"hue": "#8ba975"
},
{
"saturation": -46
},
{
"lightness": -28
},
{
"visibility": "on"
}
]
},
{
"featureType": "transit",
"elementType": "geometry",
"stylers": [
{
"hue": "#a43218"
},
{
"saturation": 74
},
{
"lightness": -51
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "administrative.province",
"elementType": "all",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": 0
},
{
"lightness": 100
},
{
"visibility": "simplified"
}
]
},
{
"featureType": "administrative.neighborhood",
"elementType": "all",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": 0
},
{
"lightness": 100
},
{
"visibility": "off"
}
]
},
{
"featureType": "administrative.locality",
"elementType": "labels",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": 0
},
{
"lightness": 100
},
{
"visibility": "off"
}
]
},
{
"featureType": "administrative.land_parcel",
"elementType": "all",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": 0
},
{
"lightness": 100
},
{
"visibility": "off"
}
]
},
{
"featureType": "administrative",
"elementType": "all",
"stylers": [
{
"hue": "#3a3935"
},
{
"saturation": 5
},
{
"lightness": -57
},
{
"visibility": "off"
}
]
},
{
"featureType": "poi.medical",
"elementType": "geometry",
"stylers": [
{
"hue": "#cba923"
},
{
"saturation": 50
},
{
"lightness": -46
},
{
"visibility": "on"
}
]
}
]
});
//define infoWindow to say current location at the current location
infoWindow = new google.maps.InfoWindow;
// try HTML5 geolocation
if (navigator.geolocation) {
// getCurrentPosition allows you to gather position information from the browser
navigator.geolocation.getCurrentPosition(function(position){
// this is the point you can see if geoLocation was allowed
console.log("geolocation allowed")
$('.about').hide();
$('.open-question').show();
// makes an object to store current position latitude and longitude
pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
//infowindow for geolocation center
infoWindow.setPosition(pos);
infoWindow.setContent('Location found.');
infoWindow.open(map);
//set center of map to current position
map.setCenter(pos);
//drawing manager function is called here
drawingInterface();
}, function(){
//error handling for geolocation
handleLocationError(true, infoWindow, map.getCenter());
});
} else {
//error handling for geolocation
handleLocationError(false, infoWindow, map.getCenter());
};
}
// this will render the drawingManager UI
function drawingInterface() {
drawingManager = new google.maps.drawing.DrawingManager({
drawingMode: google.maps.drawing.OverlayType.MARKER,
drawingControl: true,
drawingControlOptions: {
position: google.maps.ControlPosition.TOP_CENTER,
drawingModes: ['rectangle']
},
// edit options and styling for rectangle here
rectangleOptions: {
editable: true
}
});
//render drawing manager and drawings on map
drawingManager.setMap(map);
//render directions
directionsDisplay.setMap(map);
//render direction panel
directionsDisplay.setPanel(document.getElementById('right-panel'));
//event listner for when a rectangle is drawn
google.maps.event.addListener(drawingManager, 'rectanglecomplete', function (rectangle) {
//hide infowindow at geolocation
infoWindow.setMap(null);
// this is just a check to see .getBounds() of that rectangle
var maxLat = rectangle.getBounds().getNorthEast().lat();
var minLat = rectangle.getBounds().getSouthWest().lat();
var minLng = rectangle.getBounds().getNorthEast().lng();
var maxLng = rectangle.getBounds().getSouthWest().lng();
//when bounds change get new bounds latlng values from api
rectangle.addListener('bounds_changed', function(event){
maxLat = rectangle.getBounds().getNorthEast().lat();
minLat = rectangle.getBounds().getSouthWest().lat();
minLng = rectangle.getBounds().getNorthEast().lng();
maxLng = rectangle.getBounds().getSouthWest().lng();
});
//toggle visibilty of the get-lost-button
$('#get-lost-button').show("slow");
// get-lost button event listner
$(".ui-container").on("click", '#get-lost-button', function() {
//lets you know it ran
mapStartCount++;
//get lost button, change sizing and position
$('#get-lost-button').toggleClass('get-lost-again',true);
$('#get-lost-button').removeClass('get-lost-button');
//manage tutorial button
$('#tutorial-button').show();
$('.ui-container').on('click','#tutorial-button', function(){
tutorialNavigation();
})
//hide rectangle
rectangle.setMap(null);
//hide drawingManager
drawingManager.setMap(null);
//random number
var randomNum = Math.random();
console.log(randomNum);
//get random latitude from the .getBounds()
var randomLat = randomNum* (maxLat - minLat) + minLat;
// get random longititude from the .getBounds()
var randomLng = randomNum * (maxLng - minLng) + minLng;
console.log(randomLat);
console.log(randomLng);
// combine those random coordinates into usable .LatLng()
randomCoord = new google.maps.LatLng(randomLat, randomLng);
//show direction type select
$('#floating-panel').show("slow");
// rightPanelResponsive();
$('#right-panel').show("slow");
// $('#get-lost-again').show("slow");
//call route function
calculateAndDisplayRoute(directionsService, directionsDisplay);
//event listner to change the route mode
document.getElementById('mode').addEventListener('change', function() {
//runs new route api call
calculateAndDisplayRoute(directionsService, directionsDisplay);
});
});
});
};
//uses googles direction services
function calculateAndDisplayRoute(directionsService, directionsDisplay) {
var selectedMode = document.getElementById('mode').value;
directionsService.route({
//center pos via geolocation sevices
origin: pos,
// random cordinate
destination: randomCoord,
// direction mode selectable
travelMode: google.maps.TravelMode[selectedMode]
}, function(response, status) {
if (status === 'OK') {
directionsDisplay.setDirections(response);
} else {
window.alert('Directions request failed due to ' + status);
}
});
}
$(enterMap())
// loads event listner for the page loading
google.maps.event.addDomListener(window, 'load', aboutMap);
})();