-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>Investment Monitor Map</title>
<meta charset='utf-8' />
<meta name="description" content="An animated, interactive map of foreign direct investment between Canada and the Asia Pacific">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Asia Pacific Foundation of Canada">
<meta name="keywords" content="investment,Asia,Canada">
<link rel="stylesheet" href="styles/main.css"/>
<script src="bundle.js"></script>
</head>
<body>
<svg id="map" height="600">
<g id="projected-map-elements">
<g id="graticules"></g>
<g id="countries"></g>
<g id="cities"></g>
<g id="investments"></g>
</g>
<g id="meta">
<text id="year" x="0"><text>
</g>
</svg>
<div id="control-panel">
<label for="time-slider">Slide to step through time</label>
<br>
<input type="range" min="0" value="0" step="3" id="time-slider"/>
<br>
<button id="start-stop">Start animation</button>
</div>
</body>
</html>