-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/marker_airport.png" />
<link rel="stylesheet" href="/src/styles/loader.css">
<link rel="stylesheet" href="/src/styles/api.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AIM Mapping Tool V3</title>
</head>
<body>
<div id="loader"><div id="loader_globe"></div><p>LOADING...</p></div>
<div id="api"><div id="loader_container"><div id="loader_signal"></div><p>Fetching Data...</p></div></div>
<div id="app">
<div id="sidebarToggle"></div>
<div id="sidebar">
<div id="sidebarFlags"></div>
<div id="sidebarInner_query" class="sidebarInner"></div>
<div id="sidebarInner_basemap" class="sidebarInner"></div>
<div id="sidebarInner_conversion" class="sidebarInner"></div>
<div id="sidebarInner_balloon" class="sidebarInner"></div>
<div id="sidebarInner_settings" class="sidebarInner"></div>
<div id="sidebarInner_info" class="sidebarInner"></div>
</div>
<div id="zoom"><div id="zoomIn"></div><div id="zoomOut"></div></div>
<div id="coords"></div>
<div id="map"></div>
<div id="alternativeQueryAll"></div>
<div id="toolbar"></div>
<div id="layerGroup" title="Toggle overlays such as FIR, TMA, CTR etc"></div>
<div id="polylineField">
<label for="polylineField_speed">Speed in Knots: </label>
<input name="speed" type="number" id="polylineField_speed" />
<table id="polylineField_table">
<thead id="polylineField_table_head">
<tr>
<th>DEP</th>
<th>DIST</th>
<th>DEST</th>
<th>TIME</th>
<th>TOTALDIST</th>
<th>TOTALTIME</th>
</tr>
</thead>
<tbody id="polylineField_table_body">
</tbody>
</table>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>