-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
42 lines (38 loc) · 1.41 KB
/
map.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
<!DOCTYPE html>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<head>
<title> Popular State Migrations </title>
<!-- css -->
<link rel="stylesheet" type="text/css" href="map.css">
</head>
<body>
<!--
The most popular state to move to from State A was state B in year.
State A was the most popular state to move to from state(s): A, B, C in year.
-->
<div class="col-xs-12">
<h1 id="title"></h1>
</div>
<!--
<div class = "col-xs-12" id = "switch"></div>
-->
<div class = "col-xs-12" id = "dialoguebox"></div>
<div class = "col-xs-9" id = "map"></div>
<div class = "col-xs-3" id = "databox">
<h3>Data Migration Information</h3>
<div id = "legend"></div>
<br>
<div id = "data"> </div>
</div>
<div class = "col-xs-12" id = "yearslider"></div>
<!-- import necessary js libraries -->
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<!-- bootstraps: css, jquery, jss -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- map javascript-->
<script src="map.js"></script>
</body>
</html>