forked from pittcsc/PantherView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PantherView</title>
<meta name="description" content="Map for Oakland data.">
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="./main.css">
<!--Using fontawesome temporarily-->
<script src="https://use.fontawesome.com/07694042f8.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
</head>
<body>
<div id="ui">
<div id="notifications"></div>
<div id="header">
<div id="title">
<a href="index.html">
<div id="logo">
<img src="" alt="logo">
</div>
<h1>PantherView</h1>
</a>
</div>
<div id="navigation">
<ul>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
<div id="sidebarToggleContainer">
<i id="sidebarToggle"></i>
</div>
<div id="sidebar">
<div id="controls">
<div id="dateSelection">
<button id="radioMonth" checked>Past Month</button>
<button id="radioWeek">Past Week</button>
<button id="radioDay">Yesterday</button>
</div>
<h3>Legend</h3>
<div id="typeSelection">
</div>
</div>
<footer>
© 2017 University of Pittsburgh Computer Science Club
</footer>
</div>
</div>
<div id="mapid"></div>
<script src="https://unpkg.com/[email protected]/promise.min.js"></script>
<script src="https://unpkg.com/[email protected]/fetch.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="./main.js"></script>
<script src="./data.js"></script>
</body>
</html>