-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (77 loc) · 2.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<title>Canvas Tiles</title>
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<!--script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=fetch,requestAnimationFrame,Element.prototype.classList,URL"></script-->
<link rel="stylesheet" href="/styles/style.css">
<style>
.map {
width: 100%;
height: 700px;
}
#tools {
position: absolute;
top: 1rem;
right: 1rem;
}
#tools a {
display: inline-block;
padding: 0.5rem;
background: white;
cursor: pointer;
}
</style>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.webmanifest">
</head>
<body>
Flight date:
<select id="imageDate">
<option value="2019_03">2019_03</option>
<option value="2019_05">2019_05</option>
<option value="2020_03">2020_03</option>
<option value="2020_04">2020_04</option>
<option value="2020_05">2020_05</option>
<option value="2020_06">2020_06</option>
<option value="2020_09">2020_09</option>
<option value="2024_07" selected>2024_07</option>
</select>
Birds date:
<select id="birdsDate">
<option value="none">none</option>
<option value="22.05.2020">2020_05_22</option>
<option value="11.06.2020">2020_06_11</option>
<option value="12.06.2020" selected>2020_06_12</option>
</select>
<label for="grid">
10m Nord-Süd
<input type="checkbox" id="render-grid">
</label>
<label for="gridRot">
10m rotiert
<input type="checkbox" id="render-grid-rot">
</label>
<label for="debugLabel">
Render DebugLabels
<input type="checkbox" id="render-debug">
</label>
<label for="studyLabel">
Render Study Area
<input type="checkbox" checked='true' id="render-study">
</label>
<label for="editLabel">
Edit
<input type="checkbox" id="edit-study">
</label>
<div id="map" class="map"></div>
<div id="tools">
<a id="clear">Clear</a>
<a id="download" download="features.json">Download</a>
</div>
<!--script src="index.js"></script-->
<script type="module" src="/index.js"></script>
</body>
</html>