-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (41 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WorldMap - Display statistics on a map</title>
<link href="vendor/jquery-ui-1.11.1.custom/jquery-ui.min.css" rel="stylesheet">
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<div class="worldmap-display">
<div class="worldmap-map-view">
<select class="worldmap-selector worldmap-box"></select>
<span class="worldmap-global worldmap-box"></span>
<div class="worldmap-map">
<div class="tooltip">
<h3 class="country-name"></h3>
<h4 class="country-detail"></h4>
</div>
</div>
</div>
<div class="worldmap-country-view">
<span class="back worldmap-box">Back</span>
<span class="country-title worldmap-box"></span>
<div class="custom-html"></div>
<table class="country-stats"></table>
</div>
<button class="worldmap-table-view-button" aria-label="Show/Hide table">Toggle Table</button>
<section class="worldmap-table-view closed" aria-label="WorldMap Table Data">
</section>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.4.6/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3-geo-projection/0.2.9/d3.geo.projection.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.1.0/topojson.min.js"></script>
<script src="vendor/jquery-1.11.1.min.js"></script>
<script src="vendor/jquery-ui-1.11.1.custom/jquery-ui.min.js"></script>
<script src="vendor/jquery.tablesorter.min.js"></script>
<script src="map.js"></script>
</body>
</html>