-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<title>Project #2 - London Cycle Deaths</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/MapWidget.css" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
</head>
<body>
<div class="container" style="width: 900px;">
<h1>Project #2 - London Cycle Deaths</h1>
<div id="districts" style="position: relative; width: 900px; margin: 0 auto;"></div>
<label>
<input type="checkbox" id="clasterize" checked />
clusterize
</label>
<div id="slider" style="clear: both; position: relative;">
<div id="bike" style="width: 50px; height: 47px; position: absolute; left: 0; top: 0; display: none;" />
<img src="images/bikecad_animation.gif" style="width: 50px; height: 47px; position: absolute; left: -25px; top: -47px; display: block;" />
</div>
</div>
<div style="position: relative; width: 900px;">
<div id="chart"></div>
<div id="aggregate" style="position: absolute; right: 0; top: 0;"></div>
</div>
<!--div id="timeframe" style="clear: both;"></div-->
</div>
<div id="case-tooltip" style="width: 300px; display: none;">
<div class="panel panel-info" style="margin: 0; box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 30px;">
<div class="panel-heading">
</div>
<div class="panel-body">
</div>
</div>
</div>
<!--
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="//d3js.org/colorbrewer.v1.min.js"></script>
-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/d3.v3.min.js"></script>
<script src="js/topojson.v1.min.js"></script>
<script src="js/colorbrewer.v1.min.js"></script>
<script src="js/DBSCAN.js"></script>
<script src="js/MapWidget.js"></script>
<script src="js/LineChartWidget.js"></script>
<script src="js/RadioPanelWidget.js"></script>
<script src="js/script.js"></script>
<div style="font-size: 12px; text-align: center;">© Ben Logan</div>
</body>
</html>