Package Exports
- 3d-solar-system-globe
Readme
3d-solar-system-globe
|
A collection of reusable React + Three.js components to render an interactive 3D globe and solar system in web applications.This package provides ready-to-use components such as Earth with satellites, moon systems, data-linked globes and full solar system views. |
Just Kidding π
β¨ Features
- π 3D globe rendering
- π°οΈ Earth with satellite and tower visualizations
- π EarthβMoon system
- βοΈ Full solar system scene
- β‘ Built with React and Three.js
- π¦ Easy to plug into any React project
π Installation
npm install 3d-solar-system-globeπ Usage
Import any component you need from the package and render it inside your React app.
import {
DotGlobe,
DotGlobeWithDataLink,
EarthWithTower,
EarthAndSatellite,
EarthAndMoon,
EarthMoonSatellite,
SolarSystem
} from "3d-solar-system-globe";
function App() {
return (
<SolarSystem />
);
}
export default App;