forked from andrewcylaw/HackHarvard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpave.js
76 lines (58 loc) · 1.65 KB
/
pave.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
'use strict';
// App name space
var pave = pave || {};
// User data entry
pave.startAddress = "";
pave.endAddress = "";
pave.radius = "";
// Embed a google map widget into the website
pave.initMap = function() {
var uluru = {lat: -25.363, lng: 131.044};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
// Manipulate sidenav bar
pave.openNav = function() {
document.getElementById("mySidenav").style.width = "250px";
}
pave.closeNav = function() {
document.getElementById("mySidenav").style.width = "0";
}
// Submit form
pave.enterPrefs = function(){
pave.startAddress = document.getElementById("startAddress").value;
pave.endAddress = document.getElementById("endAddress").value;
pave.radius = document.getElementById("radius").value;
//calculateAndDisplayRoute();
setUp();
}
// insert this waypoint between start and end points
pave.addWaypoint = function(place){
var tmp = document.getElementById("addLoc");
var tmpSpan = document.createElement("p");
var tmpImg = document.createElement("img");
var textField = document.createTextNode(place + "\n");
var tmpbr = document.createElement("br");
var tmpDown = document.createElement("img");
// create icon
tmpImg.src = "icon_add_white.svg"
tmpImg.width = "18";
tmpDown.src = "icon_darrow_white.svg"
tmpDown.className = "downArrow";
// add image + name of event
tmpSpan.appendChild(tmpImg);
tmpSpan.appendChild(textField);
tmp.appendChild(tmpSpan);
tmp.appendChild(tmpDown);
tmp.appendChild(tmpbr);
}
// Init function
pave.init = function() {
pave.initMap();
}