-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 2.02 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
47
48
49
50
51
52
53
54
<!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">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-sA+zWATbFveLLNqWO2gtiw3HL/lh1giY/Inf1BJ0z14=" crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-NDI0K41gVbWqfkkaHj15IzU7PtMoelkzyKp8TOaFQ3s=" crossorigin=""></script>
<title>ISS Locator</title>
</head>
<body>
<h1 style="font-size:20px;">ISS <span style="color:red;">LOCATOR</span></h1>
<div id="root">
<h2>Real-time Location of the ISS</h2>
<div class="recenter"><button>Recenter</button></div>
<div class="container">
<div id="iss">
<div id="issMap"></div>
</div>
<div id="issInfo">
<div id="info">
<table>
<tr>
<td id="sc">Time</td>
<td id="time"></td>
</tr>
<tr>
<td id="sc">Latitude</td>
<td id="lat"></td>
</tr>
<tr>
<td id="sc">Longitude</td>
<td id="lon"></td>
</tr>
<tr>
<td id="sc">Velocity</td>
<td id="velocity"></td>
</tr>
<tr>
<td id="sc">footprint</td>
<td id="footprint"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>