-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.51 KB
/
index.html
File metadata and controls
41 lines (37 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>IF Tracker</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.css" />
<script src="script.js"></script>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.js"></script>
</head>
<body>
<div class="container">
<div id="map"></div>
<div id="text-section">
<h2>Flight Information</h2>
</div>
<div id="layerSelect">
<select id="weatherLayers">
<option value="precipitation_new">Precipitation</option>
<option value="clouds">Clouds</option>
<option value="temp">Temperature</option>
<option value="pressure">Pressure</option>
<option value="wind">Wind</option>
</select>
</div>
<button id="changeMapBtn" class="btnStyle span3"><img src="static/map.png" alt="Switch to Map" /></button>
</div>
<div id="warningPopup">
<div id="warningContent">
This page is optimized for desktop. This message will disappear in 3...
</div>
</div>
</body>
</html>