-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcoordman.html
24 lines (24 loc) · 869 Bytes
/
coordman.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coordman by Rebane</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="coordman.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
</head>
<body>
<div id="map"></div>
<div id="coords"><div id="coordstext">Coords: 0,0</div></div>
<div id="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeSidebar()">×</a>
<h1>Waypoints</h1>
</div>
<script src="user-data.js"></script>
<script src="coordman.js"></script>
</body>
</html>