-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathback.html
59 lines (53 loc) · 2.31 KB
/
back.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<!-- This is a very simple example of using Web WorldWind. -->
<html>
<head lang="en">
<meta charset="UTF-8">
<title>ISS Tracker</title>
<!-- Include the Web WorldWind library. -->
<script src="https://files.worldwind.arc.nasa.gov/artifactory/web/0.9.0/worldwind.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="satellite.min.js"></script>
<script src="sun.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div style="position: absolute;">
<div id="timeline">
<div id="label">
<span id="m12hr">-12hr</span>
<span id="p12hr">+12hr</span>
</div>
<input type="range" id="time-input" min="-400" max="400" oninput="update_time();">
<!-- <small>-12hr / +12hr</small> -->
<div class="container">
<div id="date-selection">
<input type="date" id="date-input" oninput="updateISS(); focusISS(); update_world_time();">
</div>
<button onclick="to_default_time();">Set to current time</button>
</div>
</div>
<!-- Display astronaut information here -->
<!-- Create a canvas for Web WorldWind. -->
<canvas id="canvas">
Your browser does not support HTML5 Canvas.
</canvas>
</div>
<div id="toggler">
<div id="toggle-debris">
<button id="debrisToggle" onclick="toggleDebris();">Toggle Debris</button><br>
</div>
<div id="toggle-stations">
<button id="stationsToggle" onclick="toggleStations();">Toggle Ground Stations</button><br>
</div>
<a href="index.html">
<button id>go to launch</button></a>
</div>
<script src="timeline.js"></script>
<script src="iss.js"></script>
<script src="main.js"></script>
<script src="debris.js"></script>
<script src="sph2car.js"></script>
<script src="groundstation.js"></script>
</body>
</html>