React components for visualizing real-time satellite locations on a map.
This package is built on React, react-map-gl, MapLibre GL JS, and satellite.js.
Check out the demo: https://sankichi92.github.io/react-sat-map/
The demo showcases satellites from the "Last 30 Days' Launches" TLEs on CelesTrak, retrieved during the last build.
$ npm install react-sat-map
The primary component of this library is SatelliteMarkers
.
You can use it within the Map
component provided by react-map-gl/maplibre
.
Pass an array of satellite names and TLEs as the satellites
prop.
Here’s an example:
import { Map } from "react-map-gl/maplibre";
import { SatelliteMarkers } from "react-sat-map";
import "maplibre-gl/dist/maplibre-gl.css";
import "react-sat-map/style.css";
const satellites = [
{
name: "ISS (ZARYA)",
tle: {
line1:
"1 25544U 98067A 24357.81415843 .00061122 00000+0 10662-2 0 9993",
line2:
"2 25544 51.6377 100.8061 0005268 355.1085 147.9826 15.50107458487805",
},
},
];
export default function App() {
return (
<Map
style={{ height: "100dvh" }}
mapStyle="https://demotiles.maplibre.org/style.json"
>
<SatelliteMarkers satellites={satellites} />
</Map>
);
}