-
Notifications
You must be signed in to change notification settings - Fork 156
/
index.html
31 lines (26 loc) · 836 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
29
30
31
<head>
<style> body { margin: 0; } </style>
<script src="//unpkg.com/react/umd/react.production.min.js"></script>
<script src="//unpkg.com/react-dom/umd/react-dom.production.min.js"></script>
<script src="//unpkg.com/@babel/standalone"></script>
<script src="//unpkg.com/react-globe.gl"></script>
<!--<script src="../../dist/react-globe.gl.js"></script>-->
</head>
<body>
<div id="globeViz"></div>
<script type="text/jsx">
const shieldRing = { lat: 90, lng: 0 };
ReactDOM.render(
<Globe
globeImageUrl="//unpkg.com/three-globe/example/img/earth-night.jpg"
ringsData={[shieldRing]}
ringAltitude={0.25}
ringColor={() => 'lightblue'}
ringMaxRadius={180}
ringPropagationSpeed={20}
ringRepeatPeriod={200}
/>,
document.getElementById('globeViz')
);
</script>
</body>