Quick start with Globe.GL
masterGlobe.GL is a web component for visualizing data layers on a 3D globe using a spherical projection. It is a convenience wrapper around three-globe and uses ThreeJS/WebGL for rendering.
You can use it via ESM import or a script tag.
import Globe from 'globe.gl';
// Or using a script tag in HTML:
// <script src="//cdn.jsdelivr.net/npm/globe.gl"></script>
const myGlobe = new Globe(myDOMElement)
.globeImageUrl(myImageUrl)
.pointsData(myData);