-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (38 loc) · 1.33 KB
/
index.html
File metadata and controls
55 lines (38 loc) · 1.33 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src='https://api.mapbox.com/mapbox.js/v3.2.0/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v3.2.0/mapbox.css' rel='stylesheet' />
<script type = "text/javascript" src='leaflet.rotatedMarker.js'></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
width: 100%;
}
</style>
<title>MAP</title>
</head>
<body>
<!-- <input type="text" placeholder="Mode S Code" id="hexcode">
<input type="submit" onclick="TextInput()" id="button">
<ul id="PlaneUL">
<li>Hit the gym</li>
<li class="checked">Pay bills</li>
<li>Meet George</li>
<li>Buy eggs</li>
<li>Read a book</li>
<li>Organize office</li>
</ul> -->
<div id = "map" > </div>
<script type="text/javascript" src="PopulatePlanes.js"></script>
<script type="text/javascript" src="LocalStorage.js"></script>
<script type="text/javascript" src="SettingsBar.js"></script>
<script type="text/javascript" src="MapMaker.js"></script>
<script type="text/javascript" src="OpenSkyRequest.js"></script>
</body>
</html>