-
Notifications
You must be signed in to change notification settings - Fork 318
/
index.html
27 lines (22 loc) · 848 Bytes
/
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
<head>
<style> body { margin: 0; } </style>
<script src="//unpkg.com/globe.gl"></script>
<!-- <script src="../../dist/globe.gl.js"></script>-->
</head>
<body>
<div id="globeViz"></div>
<script type="module">
import { csvParse } from 'https://esm.sh/d3-dsv';
const world = new Globe(document.getElementById('globeViz'))
.globeImageUrl('//unpkg.com/three-globe/example/img/earth-night.jpg')
.heatmapPointLat('lat')
.heatmapPointLng('lng')
.heatmapPointWeight('pop')
.heatmapBandwidth(0.9)
.heatmapColorSaturation(2.8)
.enablePointerInteraction(false);
fetch('../datasets/world_population.csv').then(res => res.text())
.then(csv => csvParse(csv, ({ lat, lng, pop }) => ({ lat: +lat, lng: +lng, pop: +pop })))
.then(data => world.heatmapsData([data]));
</script>
</body>