-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (76 loc) · 3.38 KB
/
index.html
File metadata and controls
104 lines (76 loc) · 3.38 KB
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
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Information Visualisation</title>
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<!-- Leaflet -->
<!--<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" />
<!-- Bootstrap Template -->
<link href="less/cover.less" rel="stylesheet/less">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<!-- Lealfet awesome markers -->
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css">
<link rel="stylesheet" href="less/leaflet.awesome-markers.css">
<!-- MapBox -->
<link href='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css' rel='stylesheet'/>
<!-- Custom Less -->
<link href="less/custom.less" rel="stylesheet/less">
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">Human Development Index</h3>
<nav>
<ul class="nav masthead-nav">
<li class="active"><a href="/">home</a></li>
<li><a href="/about">about</a></li>
<li></li>
<select id="viewSelector" onchange="changeView()">
<option value="hdi" selected="selected">HDI</option>
<option value="life">Life Expectancy</option>
<option value="school_ex">Expected School Years</option>
<option value="school_mean">Mean School Years</option>
<option value="gni">Gross National Income</option>
</select>
</ul>
</nav>
</div>
</div>
<div id="map"></div>
<div id="legend">
<p id="legendLabel">Legend: </p>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- Less -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.6.1/less.min.js"></script>
<!-- Leaflet -->
<script src="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js"></script>
<!-- MapBox -->
<script src='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js'></script>
<!-- Google Maps API -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<!-- D3 -->
<script src="http://d3js.org/d3.v3.min.js"></script>
<!-- Lealfet Awesome markers -->
<script src="js/leaflet.awesome-markers.js"></script>
<!-- D3 Overlay -->
<script src="js/L.D3SvgOverlay.min.js"></script>
<!-- Color Brewer -->
<script src="/colorbrewer.js"></script>
<!-- Custom JavaScript -->
<script src="js/map.js"></script>
<script src="js/vis.js"></script>
</body>
</html>