-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.25 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
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="appInterface">
<div id="title">
<h1>ISS Tracker</h1>
<h1>🛰️🌌☄️</h1>
</div>
<div id="chartDiv"></div>
<div id="infoDiv">
<div>
<h3>📌</h3>
<p id="positionField"></p>
<h3>Position</h3>
</div>
<div>
<h3>🚀</h3>
<p id="velocityField"></p>
<h3>Velocity</h3>
</div>
<div>
<h3>👁️</h3>
<p id="visibilityField"></p>
<h3>Visibility</h3>
</div>
</div>
</div>
<!--Third party libraries-->
<script src="https://cdn.amcharts.com/lib/4/core.js"></script>
<script src="https://cdn.amcharts.com/lib/4/maps.js"></script>
<script src="https://cdn.amcharts.com/lib/4/geodata/worldLow.js"></script>
<script src="https://cdn.amcharts.com/lib/4/themes/animated.js"></script>
<!--Local code-->
<script src="code.js"></script>
</body>
</html>