-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 912 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="https://www.agrisens-demmin.de/images/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All My Fields</title>
</head>
<body>
<h1>All My Fields</h1>
<div id="droptarget" ondrop="dropHandler(event)" ondragover="dragoverHandler(event)">
Drag GeoJSON file here
</div>
<div id="controls">
Select date:
<input id="dateslider" type="range" min="1" max="365" value="168" onchange="changeSliderHandler(event)">
<input id="datepicker" type="date" onchange="changeDateHandler(event)">
</div>
<div id="map"></div>
<footer>Part of the AgriSens DEMMIN 4.0 research project funded by the German Ministry for Agriculture</footer>
<script type="module" src="./main.js"></script>
</body>
</html>