-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.0/mapbox-gl.css' rel='stylesheet' />
<script src='map.js'></script>
<link href='map.css' rel='stylesheet' />
<script src='nav.js'></script>
<link href='nav.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body onload='initmap()'>
<div id='map'></div>
<div id="mySidenav" class="sidenav">
<span class="navbtn closebtn" onclick="closeNav()">×</span>
<div id='historyH'><h2>Geschiedenis van:</h2></div>
<div id="navbox" class="navbox"></div>
<form>
<label for="type_opm">Betreft:</label>
<select name="type_opm" id="type_opm" style="margin: 8px 0;">
<option value="opmerking">opmerking</option>
<option value="beschrijving">beschrijving</option>
<option value="beheer nodig">beheer nodig</option>
<option value="beheer gedaan">beheer gedaan</option>
<option value="element verdwenen">element verdwenen</option>
</select><br>
<label for="naam">Naam:</label>
<input type="text" id="naam" name="naam" value="" style="margin: 8px 0;"><br>
<label for="opmerking">Opmerking:</label><br>
<textarea id="opmerking" name=opmerking" rows="3" cols="30" style="margin: 8px 0;"></textarea>
<button type="button" onclick="maak_opmerking()">Plaatsen</button>
</form>
</div>
<div id="menu">
<input id="streets" type="radio" name="rtoggle" value="streets" checked="checked" />
<label for="streets">kaart</label>
<input id="hybrid" type="radio" name="rtoggle" value="satellite" />
<label for="satellite">satelliet</label>
</div>
<div id="menu2">
<H4>Vlieg naar:</H4>
<div><button type="button" style="width: 120px; margin: 5px;" onclick="otherLocation('Friese wouden')">Friese wouden</button></div>
<div><button type="button" style="width: 120px; margin: 5px;" onclick="otherLocation('Achterhoek')">Achterhoek</button></div>
</div>
<div id='legend' class='legend'>
<H4>Landschapselementen</H4>
<div><span style='background-color: #42f5b6'></span>Solitaire bomen</div>
<div><span style='background-color: #F4D03F'></span>Bomenrijen</div>
<div><span style='background-color: #0B5345'></span>Bomengroepen</div>
<div><span style='background-color: #6E2C00'></span>Houtwallen</div>
<div><span style='background-color: #43FF33'></span>Heggen</div>
<div><span style='background-color: #0CFDFE'></span>Poelen</div>
</div>
</body>
</html>