globe.gl
Version:
UI component for Globe Data Visualization using ThreeJS/WebGL
15 lines (12 loc) • 386 B
HTML
<head>
<style> body { margin: 0; } </style>
<script src="//cdn.jsdelivr.net/npm/globe.gl"></script>
<!-- <script src="../../dist/globe.gl.js"></script>-->
</head>
<body>
<div id="globeViz"></div>
<script type="module">
new Globe(document.getElementById('globeViz'))
.globeTileEngineUrl((x, y, l) => `https://tile.openstreetmap.org/${l}/${x}/${y}.png`);
</script>
</body>