-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
34 lines (26 loc) · 910 Bytes
/
explore.html
File metadata and controls
34 lines (26 loc) · 910 Bytes
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
<DOCTYPE html>
<html lang="en">
<head>
<title>
Interactive Map
</title>
<link rel="stylesheet" href="explore.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin="">
</script>
<style>
</style>
<center><h1>Interactive Map</h1></center>
</head>
<body>
<p>Toggle Light/Dark Mode</p>
<label class="switch">
<input type="checkbox" id="darkmode" onclick="toggle()">
<span class="slider round"></span>
</label>
<div id="aroundmap"><div id="mapid"></div></div>
<!--script-->
</body>
</html>