-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (36 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Union Street Exploration</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
</head>
<body>
<div class="container mt-4">
<div class="row">
<div class="col-md-3">
<h4>Filters:</h4>
<div>
<input type="checkbox" id="restaurants" checked> Restaurants<br>
<input type="checkbox" id="attractions" checked> Attractions<br>
<input type="checkbox" id="bars" checked> Bars<br>
<input type="checkbox" id="cafes" checked> Cafes<br>
</div>
</div>
<div class="col-md-9">
<h2 class="text-center">Explore Union Street, Aberdeen</h2>
<div id="map" style="height: 500px;"></div>
</div>
</div>
</div>
<!-- jQuery, Bootstrap JS, and Leaflet JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="app.js"></script> <!-- Our custom JS -->
</body>
</html>