- Add data_sources.yaml for configurable data source URLs - Add data_sources.py to load config with database override support - Add arcgis_landing_points and arcgis_cable_landing_relation collectors - Change visualization API to query arcgis_landing_points - Add /api/v1/datasources/configs/all endpoint - Update Earth to fetch from API instead of static files - Fix scheduler collector ID mappings
16 lines
227 B
TypeScript
16 lines
227 B
TypeScript
function Earth() {
|
|
return (
|
|
<iframe
|
|
src="/earth/index.html"
|
|
style={{
|
|
width: '100vw',
|
|
height: '100vh',
|
|
border: 'none',
|
|
}}
|
|
title="3D Earth"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Earth
|