-
Notifications
You must be signed in to change notification settings - Fork 327
/
index.html
28 lines (23 loc) · 903 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
28
<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 { MeshLambertMaterial, DoubleSide } from 'https://esm.sh/three';
import * as topojson from 'https://esm.sh/topojson-client';
const world = new Globe(document.getElementById('globeViz'))
.backgroundColor('rgba(0,0,0,0)')
.showGlobe(false)
.showAtmosphere(false);
fetch('//unpkg.com/world-atlas/land-110m.json').then(res => res.json())
.then(landTopo => {
world
.polygonsData(topojson.feature(landTopo, landTopo.objects.land).features)
.polygonCapMaterial(new MeshLambertMaterial({ color: 'darkslategrey', side: DoubleSide }))
.polygonSideColor(() => 'rgba(0,0,0,0)');
});
</script>
</body>