-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 954 Bytes
/
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
<link href='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.css' rel='stylesheet' />
<link href='assets/style.css' rel='stylesheet' />
<style>
html, body {
margin: 0px;
padding: 0px;
}
html, body, #map {
width: 100%;
height: 100%;
}
label {
display: block;
}
</style>
<div id="selectors"></div>
<div id="map"></div>
<div id='selections' class="selections">
<a href='#' class="show">Choose what stations to display</a>
<div class='content'>
<a href='#' class="hide">Hide</a>
<div id="toggles"></div>
</div>
</div>
<div id='loading'></div>
<div id='selected'>
<h1>Explore DC metro stations</h1>
</div>
<script src="//code.jquery.com/jquery-2.1.4.min.js" charset="utf-8"></script>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.js'></script>
<script src="scripts/config.js"></script>
<script src="scripts/main.js"></script>