-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 949 Bytes
/
index.html
File metadata and controls
36 lines (29 loc) · 949 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/main.css"/>
</head>
<body>
<div id="sidebar">
<div id="padding">
<h2>Pronto Trips</h2>
<p id="time"></p>
<hr>
<div id="stopinfo">
</div>
<hr>
<div id="filterusers">
<button type="button" id="allVisibility" class="btn btn-default">Show Trails up to Now</button>
<button type="button" id="memberVisibility" class="btn btn-default">Hide Member Trips</button>
<button type="button" id="onetimeVisibility" class="btn btn-default">Hide One Time Trips</button>
</div>
</div>
</div>
<script src="//d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="js/vis.js"></script>
</body>
</html>