forked from hampelm/bus-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/app.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
</head>
<body>
<header>
<h1>
<a href="http://localdata.com" class="logo"></a>
<a href="http://localdata.com" class="logotype">LocalData</a>
</h1>
</header>
<div id="map"></div>
<div id="route"></div>
<div id="legend" class="trips">
<!-- <div class="trip unknown">
<div class="num"></div>
untracked
</div>
--> <div class="trip ontime">
<div class="num"></div>
on time
</div>
<div class="trip behind">
<div class="num"></div>
5 min late
</div>
<div class="trip late">
<div class="num"></div>
10 min late
</div>
<div class="trip verylate">
<div class="num"></div>
20+ min late
</div>
<p><br><a href="http://appsfordetroit.org/ddot.html">Data from the<br> DDOT API</a></p>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>