-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Include the CesiumJS JavaScript and CSS files -->
<script src="https://cesium.com/downloads/cesiumjs/releases/1.85/Build/Cesium/Cesium.js"></script>
<link href="https://cesium.com/downloads/cesiumjs/releases/1.85/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/satellite.js/4.0.0/satellite.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="loading">
<h1>Loading...</h1>
</div>
<div id="cesiumContainer">
<h1 class="headingTxt">Debris Tracker</h1>
</div>
<div id= "labels">
<div class="cosmosContr">
<div class="cosmos"></div>
<p>Cosmos 2251 DEB</p>
</div>
<div class="irridiumContr">
<div class="irridium"></div>
<p>Irridium 33 DEB</p>
</div>
<div class="fengyunContr">
<div class="fengyun"></div>
<p>Fengyun 1C DEB</p>
</div>
</div>
<div id="toolbar">
<table class="infoPanel" CELLPADDING="2" CELLSPACING="6" >
<tbody id = "infoTable">
</tbody>
</table>
</div>
<script src="output.js"></script>
<script src="script.js"></script>
</div>
</body>
</html>