Pin both CDN globals to exact resolved versions so production never drifts if jsdelivr's @1 / @5 aliases advance (SPEC.md §2.1). Verified the app boots identically: Cesium.VERSION 1.143.0, satellite.js twoline2satrec present, all layers + 97 sats. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>GODSIGH ▸ World View</title>
|
|
<script>window.CESIUM_BASE_URL = 'https://cdn.jsdelivr.net/npm/cesium@1.143.0/Build/Cesium/';</script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/cesium@1.143.0/Build/Cesium/Widgets/widgets.css" />
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/cesium@1.143.0/Build/Cesium/Cesium.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/satellite.js@5.0.0/dist/satellite.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="cesiumContainer"></div>
|
|
|
|
<aside id="hud">
|
|
<header>
|
|
<div class="brand">GODSIGH <span>▸ WORLD VIEW</span></div>
|
|
<div id="live-chip" data-state="live">LIVE</div>
|
|
</header>
|
|
<div class="modes">
|
|
<button id="mode-data" class="active" type="button">Data</button>
|
|
<button id="mode-photo" type="button">Photo</button>
|
|
</div>
|
|
<div id="layers"></div>
|
|
<footer>
|
|
<div>Public OSINT feeds · Celestrak · OpenSky · EOX Sentinel-2 · CARTO/OSM</div>
|
|
<div class="demo">Ships & events are <b>[DEMO]</b> data</div>
|
|
</footer>
|
|
</aside>
|
|
|
|
<div id="pick-overlay" hidden></div>
|
|
|
|
<script type="module" src="js/main.js"></script>
|
|
</body>
|
|
</html>
|