-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.64 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.64 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>
<head>
<title>SDS NAV</title>
<!-- Stops the map from breaking -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Loads leaflet from unpkg-->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script src="js/resources/school_map.js"></script>
<script src="js/priority_queue.js"></script>
<script src="js/tron.js"></script>
<script src="js/utils/geo_location_utils.js"></script>
<script src="js/nav.js"></script>
<script src="js/utils/vec_utils.js"></script>
<link rel="stylesheet" href="css/side_bar.css">
<meta charset="UTF-8">
</head>
<body>
<div class="sidebar" id="sidebar">
<p style="color:black;">Where do you want to go today?</p>
<input type="search" style="width: 90%; height:4%;" id="dest_search">
<div id="results">
<!--
<div class="res">
<div class="res-text">
<p>ITE</p>
<p>Distance: 2mi</p>
</div>
<button class="rounded-btn">Go</button>
</div>-->
</div>
</div>
<button class="toggle-btn" id="toggleBtn">☰</button>
<script src="js/ui_utils/sidebar.js"></script>
<script src="js/ui_utils/search_helper.js"></script>
<div id="map"></div>
<div id="ins" class="overlay">
<p id="instruc">Instruction:</p>
</div>
<!--Do not change the order of these elements-->
<script src="js/startup/mapSetup.js"></script>
<script src="js/startup/show_starting_dot.js"></script>
<script src="js/live_instructions.js"></script>
<script src="js/live_correction.js"></script>
</body>
</html>