-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://npmcdn.com/leaflet.path.drag/src/Path.Drag.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-editable/1.2.0/Leaflet.Editable.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="stylesheet.css"/>
<title>OSM Changesets in Ireland</title>
</head>
<body onload="start()">
<div class="headercontainer">
<div id="titlecontainer">
<div class="title">OSM Changesets</div>
</div>
<div id="checkboxcontainer">
Display only changesets marked for review: <input type="checkbox" id="myCheck" onclick="checkBox()">
</div>
</div>
<div id="mapid"></div>
<div id="notescontainer"/>
</body>
</html>