-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·30 lines (24 loc) · 1016 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Walk To</title>
<script src='https://api.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.js'></script>
<script src='assets/js/jquery.js'></script>
<script src='assets/js/stops.js'></script>
<script src='assets/js/index.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.32.1/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='assets/css/index.css' rel='stylesheet' />
</head>
<body>
<div id='map' width="100%"></div>
<button class = "button" id = "returnhome">
<i class="fa fa-location-arrow"></i>
</button>
<button class = "button" id = "help">
<i class="fa fa-question"></i>
</button>
</body>
</html>