-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalUnicornMap.html
27 lines (26 loc) · 990 Bytes
/
globalUnicornMap.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
<!DOCTYPE html>
<html>
<head>
<title>Global Unicorn Map</title>
<link rel="stylesheet" href="globe.css">
</head>
<body>
<div id="left">
<h2 id="current"></h2>
<canvas id="globe"></canvas>
</div>
<div id="right">
<div id="pieChart"></div>
</div>
<div id="bottom-right"></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js'></script>
<script src='https://d3js.org/d3-geo.v1.min.js'></script>
<script src='https://d3js.org/topojson.v2.min.js'></script>
<script src='https://bl.ocks.org/mbostock/raw/7ea1dde508cec6d2d95306f92642bc42/6aac691494f752142a67cc43c51a0fd09896dbd4/versor.js'></script>
<script src="d3pie.js"></script>
<script src="csvData.js"></script>
<script src="pieBuilder.js"></script>
<script src="conversions.js"></script>
<script src="globe.js"></script>
</body>
</html>