-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (34 loc) · 948 Bytes
/
index.html
File metadata and controls
55 lines (34 loc) · 948 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<header>
<img id='logo' src="./src/assets/logo.png" alt="Vue.js PWA" style='float:left;width:48px;height:48px;'></img>
<span style= 'float:left; padding-left: 0.2em;'>BikeTrack</span>
</header>
<meta charset="UTF-8">
<title>Map</title>
<style>
#map {
height: 75vh;
width: 75vh;
margin:auto;
}
</style>
<link rel="manifest" href="manifest.json">
</head>
<body>
<br>
<div>
<h3>
Enter Destination: <input type="text" name="address" id="adrBox">
<input type="submit" name="submit" id="submit" onclick="add()">
</h3>
</div>
<br>
<div id="map"></div><br>
<script src="src/maps.js" type="text/javascript"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC6_lGUllSRIbvmF2IDO-KJRz7F13PPZpY&callback=initMap&libraries=geometry"
type="text/javascript"></script>
</body>
</html>