-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.68 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Treasure Map</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.4.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"/>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="css/treasure_map.css">
<script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-ajax/2.1.0/leaflet.ajax.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.4/chroma.min.js"></script>
</head>
<body>
<!-- Our web map and content will go here -->
<div id="map"></div>
<div class='sidebar'>
<h1>Treasure Map</h1>
<div class="switchboard">
Switchboard not functional yet<br>use map layer control.
<ul>
<li><input type="checkbox" id="walk_toggle"><span class="slider round"></span><span class="switch-label">Walk</span>
<li><input type="checkbox" id="bike_toggle"><span class="slider round"></span><span class="switch-label">Bike</span>
<li><input type="checkbox" id="highway_toggle"><span class="slider round"></span><span class="switch-label">Highway</span>
<li><input type="checkbox" id="transit_toggle"><span class="slider round"></span><span class="switch-label">Transit</span>
</ul>
</div>
<hr>
<div class='info'>
Hover over a feature to learn more.
<div class='arc-info'></div>
<div class='node-info'></div>
</div>
</div>
<script src="map.js"></script>
</body>
</html>