-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (47 loc) · 2.42 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
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="./assets/favicon.ico" />
<link rel="apple-touch-icon" href="./assets/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./style.css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin="" />
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""></script>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<title>Data Map - Henry Shires | Project Portfolio</title>
</head>
<body>
<div class="h-100 container">
<div class="row justify-content-center align-items-center">
<div class="col text-center">
<h1>Airports in the World</h1>
<p>A simple data map by Henry Shires</p>
<div class="card" id="map"></div>
<p>Sources: <a href="https://www.kaggle.com/datasets/thoudamyoihenba/airports" target="_blank">World
Airports - Kaggle Data Sets</a>, Countries sourced from <a
href="https://geojson-maps.ash.ms/">GeoJSON Maps</a></p>
<p>Choropleth Gradient generated by <a href="https://colorbrewer2.org/"
target="_blank">colorbrewer2.org</a></p>
</div>
</div>
</div>
<!-- Leaflet Map Script -->
<script src="./map.js"></script>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>