-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Map of Ennon</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<script defer src="https://use.fontawesome.com/releases/v5.12.0/js/all.js"></script>
<!-- Leaflet CSS & JS from CDN -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- Leaflet Extra Markers CSS & JS from CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-extra-markers/1.2.1/css/leaflet.extra-markers.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-extra-markers/1.2.1/js/leaflet.extra-markers.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="map"></div>
<div class="center">
<input type="range" min="0" max="9" value="9" id="dayRange" style="width:90%">
<div id="sliderValue"></div>
<button id="shareButton">Share Current Day</button>
<div id="dayRecap" class="day-recap"></div>
</div>
<!-- Include JavaScript files -->
<script src="js/map.js"></script>
<script src="js/main.js"></script>
</body>
</html>