forked from calvinmetcalf/CodeForBoston-Census
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (89 loc) · 3.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Census Data</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="leaflet/leaflet.css" />
<!-- Le styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body {
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
position: absolute;
overflow:hidden;
}
#map {
margin-top: 50px;
width:100%;
height: 100%;
overflow:hidden;
}
.navbar-fixed-top{
margin-bottom:0;
}
@media (max-width: 780px) {
.navbar .brand{
margin-left:5px;
}
.btn.btn-info.cwm-collapsed{
margin-bottom:40px;
}
}
</style>
<link rel="stylesheet" href="css/gh-fork-ribbon.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<link rel="stylesheet" href="leaflet/leaflet.ie.css" />
<script src="js/html5shiv.js"></script>
<link rel="stylesheet" href="css/gh-fork-ribbon.ie.css" />
<![endif]-->
</head>
<body>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/calvinmetcalf/CodeForBoston-Census">Fork me on GitHub</a>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="#" target="_blank">Data</a>
<form class="navbar-form pull-left" id="searchForm"><select id="whichValue">
<option value="Income" data-get="B19013_001E">Income</option>
<option value="Inequality" data-get="B19083_001E">Inequality</option>
<option value="Mean Commute" data-get="B08131_001E,B08122_001E">Mean Commute time</option>
<option value="Income Car Vs Trans" data-get="B08121_002E,B08121_004E">Income difference, car vs transit</option>
</select></form>
</div>
</div></div>
</div> <div class="container" id='map'></div><!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/lodash.compat.min.js"></script>
<!--<script src="js/backbone.min.js"></script>
<script src="js/communist.min.js"></script>
<script src="js/leaflet.hash.js"></script>-->
<script src="js/bootstrap.min.js"></script>
<script src="leaflet/leaflet.js"></script>
<script src="js/style.js"></script>
<script src="js/rtree.js"></script>
<script src="js/d3.min.js"></script>
<script src="js/colorbrewer.js"></script>
<script src="script.js"></script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40454900-2', 'calvinmetcalf.github.io');
ga('send', 'pageview');
</script>
</body>
</html>