-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Leaflet Challenge!</title>
<!-- bootstrap CSS with popper -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body>
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-5 fw-bold">Leaflet Challenge!</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Monash University Data Analytics Bootcamp.</p>
<h2><u>Important!</u></h2>
<p class="lead mb-4"><b>A config.js file with the variable API_KEY is required in each
Leaflet Step (/static/js directory), containing an API key from <a href="https://www.mapbox.com/"
target="_blank">mapbox.com</a>
<br>Copy the following line into your config.js and replace with your unique API key:
</b></p>
<code>var API_KEY = "insert_api_key_here"</code><br><br>
<p class="lead mb-4">Step 1: geographic visualisation of earthquake data on a light map, represented
by
circle markers of varying colours and radii depending on the magnitude of the earthquake.</p>
<p class="lead mb-4">Step 2: building upon step 1, with additional base maps and an overlay map
showing the
fault lines of every tectonic plate.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="Leaflet-Step-1/index.html"><button type="button"
class="btn btn-primary btn-lg px-4 me-sm-3">Leaflet Step 1</button></a>
<a href="Leaflet-Step-2/index.html"><button type="button" class="btn btn-warning btn-lg px-4">Leaflet
Step
2</button></a>
</div>
</div>
</div>
</body>
</html>