-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Drone Map</title>
<meta charset="UTF-8" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<base href=".">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon.svg" />
<link rel="icon" type="image/png" sizes="144x144" href="img/favicon.svg" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" crossorigin="anonymous"
integrity="sha384-sHL9NAb7lN7rfvG5lfHpm643Xkcjzp4jFvuavGOndn6pjVqS6ny56CAt3nsEVT4H" />
<link rel="stylesheet" href="index.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" crossorigin="anonymous"
integrity="sha384-cxOPjt7s7Iz04uaHJceBmS+qpjv2JkIHNVcuOrM+YHwZOmJGBXI00mdUXEq65HTH"></script>
<script src="https://unpkg.com/[email protected]/osmtogeojson.js" crossorigin="anonymous"
integrity="sha384-tTiYm9s5Tt30ywZxrSi/qrGDW6YATzri9KQVgNi96KVkzwqRLQWzh/G2ri2QTaz1"></script>
<script src="https://unpkg.com/[email protected]/dist/proj4.js" crossorigin="anonymous"
integrity="sha384-xW3INKRIuZiGkhth61Bh5nbna+3oHENli5N2RUsGhI1IuqEnzYMJK9EGgdUVtwo+"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet-event-forwarder.js" crossorigin="anonymous"
integrity="sha384-u25X6CpmybeGrpDgsj5GZETdMrBltnUpApG3+xW8fb3GmN7jltIzXof4DuEx1o+l"></script>
<script src="scripts/DBDatasets.js"></script>
<script src="scripts/LocationSearchBar.js"></script>
<script src="scripts/NotamProcessor.js"></script>
<script src="scripts/SurfaceHeightManager.js"></script>
<script defer src="index.js" type="text/javascript"></script>
</head>
<body>
<div id="location-search">
<div>
<input id="location-search-bar" type="text" placeholder="Search for a location" />
<svg id="location-search-clear" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<line x1="0" y1="0" x2="10" y2="10" />
<line x1="0" y1="10" x2="10" y2="0" />
</svg>
</div>
<div id="location-search-results" class="hidden disable-scrollbars"></div>
</div>
<div id="map"></div>
</body>
</html>