-
Notifications
You must be signed in to change notification settings - Fork 0
/
standard.html
41 lines (38 loc) · 1.66 KB
/
standard.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
<!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="standard.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dom-to-image.min.js"></script>
</head>
<body>
<div class="float-container clearfix">
<div class="float-child" style="text-align: center;">
<p><b>ZHU Standard Enroute Splits</b></p>
<p><a href="index.html"><button class="red">Back to Menu</button></a></p>
</div>
<div class="float-child" style="text-align: center;">
<p><b>Map Controls</b></p>
<button id="toggleStrata" class="button">Show High Strata</button>
<button id="toggleTracon" class="button">Show TRACONs</button>
<p>
<button id="resetMap" class="red">Reset</button>
<button id="exportMap" class="blue">Export Map</button>
</div>
<div class="float-child" style="text-align: center;">
<p><b>Standard Splits</b></p>
<button id="splitBySpecialty" class="blue">Specialty</button>
<p>
<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>