-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hurricanes Map</title>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.49.0/mapbox-gl.css' rel='stylesheet'/>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.49.0/mapbox-gl.js'></script>
<script src='https://npmcdn.com/@turf/turf/turf.min.js'></script>
<script src='https://unpkg.com/[email protected]/cheap-ruler.min.js'></script>
<style>
body {
margin: 0;
background: black;
}
#info {
position: fixed;
top: 50px;
left: 50px;
min-width: 150px;
color: white;
padding: 10px;
background: rgba(0,0,0,0.6);
}
.mapboxgl-popup-content {
background: rgba(0,0,0,0.6);
color: white;
border: none;
padding: 5px 5px 0;
margin: 15px;
}
.mapboxgl-popup-tip {
border: none;
}
</style>
</head>
<body>
<div id='map' style='width: 100%; height: 100vh;'></div>
<div id='info'>Loading...</div>
</body>
<script src='./utils.js'></script>
<script src='./parsing.js'></script>
<script src='./main.js'></script>
</html>