forked from andrewcylaw/HackHarvard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpave.html
More file actions
52 lines (38 loc) · 1.79 KB
/
pave.html
File metadata and controls
52 lines (38 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>waypaver</title>
<link rel="stylesheet" type="text/css"
href="pave.css">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Tangerine">
</head>
<body>
<header>
way<span style="font-weight:bold">paver</span>
</header>
<div id="openSideNav" onclick="pave.openNav()"> <img class="svgNav" src="icon_menu_white.svg" width="40"> </div>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="pave.closeNav()">×</a>
<h3><img class="svgNav" src="icon_place_white.svg" width="18"> Start</h3>
<input type="text" id="startAddress" placeholder="address" name="startAddress"></input>
<img class="downArrow" src="icon_darrow_white.svg"></img>
<p id="addLoc"> </p>
<h3><img class="svgNav" src="icon_place_white.svg" width="18"> Destination</h3>
<input type="text" id="endAddress" placeholder="address" name="endAddress"></input>
<br>
<hr>
<br>
<h3><img class="svgNav" src="icon_radius_white.svg" width="18"> Radius</h3>
<input type="text" id="radius" pattern="[0-9]*" placeholder="distance in m"></input>
<input type="submit" id="paveIt" value="pave it" onclick="pave.enterPrefs()"></input>
</div>
<div id="map"></div>
<script src="pave.js"></script>\
<script src="ShortestPath.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAIyG6NnwEisGZXa8zS2kEtxEoO5Izjb6I&callback=initMap&libraries=geometry,places">
</script>
</body>
</html>