-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandard.html
More file actions
40 lines (37 loc) · 1.64 KB
/
standard.html
File metadata and controls
40 lines (37 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZHU Standard Enroute Splits</title>
<!-- Include Leaflet CSS and JS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="custom.css" />
<!-- <link rel="stylesheet" href="standard.css" /> -->
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dom-to-image@2.6.0/dist/dom-to-image.min.js"></script>
</head>
<body>
<div class="float-container clearfix">
<div class="float-child" style="text-align: center;">
<b>ZHU Standard Enroute Splits</b><br>
<a href="index.html"><button class="red">Back to Menu</button></a>
</div>
<div class="float-child" style="text-align: center;">
<b>Map Controls</b><br>
<button id="toggleStrata">Show High Strata</button>
<button id="toggleTracon">Show TRACONs</button>
<button id="exportMap" class="export">Export Map</button>
<button id="resetMap" class="danger">Reset</button>
</div>
<div class="float-child" style="text-align: center;">
<b>Standard Splits</b><br>
<button id="splitBySpecialty" class="blue">Specialty</button>
<button id="splitByDirection" class="blue">N/S/E/W</button>
<button id="splitByEW" class="blue">E/W</button>
</div>
</div>
<div id="map" style="height: 720px; width: 1280px;"></div>
<script src="standard.js"></script>
</body>
</html>