-
Notifications
You must be signed in to change notification settings - Fork 1
/
index1.html
117 lines (107 loc) · 5.32 KB
/
index1.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ÖGÖ</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="Hauptbildschirm.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<link rel="stylesheet" href="map.css">
<link rel="stylesheet" href="overpass-lib.css">
<link rel="stylesheet" href="Filter.css">
<link rel="stylesheet" href="Routenplaner.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
<script src="overpass-lib.js"></script>
<script src="map.js"></script>
</head>
<nav>
<div class="container">
<button type="button" class="button1" id="popupbutton">
<p><i class="fa fa-sliders" style="font-size:20px"></i> Filter</p>
</button>
<button type="button" class="button2" id="popupbuttonroute">
<p>Routenplaner <i class="fa fa-map-signs" style="font-size:18px"></i></p>
</button>
</div>
</nav>
<body>
<div class="map" id="mapid">
</div>
<div id="Popup">
<h1>Filter</h1>
<form action="/action_page.php">
<fieldset>
<legend><strong>Transportarten</strong></legend>
<form>
<input type="checkbox" name="Fahrrad" value="Fahrrad"> Fahrrad <br>
<input type="checkbox" name="Elektroscooter" value="Elektroscooter"> Elektroscooter <br>
<input type="checkbox" name="Zug" value="Zug"> Zug<br>
<input type="checkbox" name="Straßenbahn" value="Straßenbahn"> Straßenbahn <br>
<input type="checkbox" name="U-Bahn" value="U-Bahn"> U-Bahn<br>
<input type="checkbox" name="Bus" value="Bus"> Bus <br>
</form>
</fieldset>
<br>
<fieldset>
<legend><strong>Kartenarten</strong></legend>
<form>
<input type="checkbox" name="Standard" value="Standard"> Standard <br>
<input type="checkbox" name="Satellit" value="satellit"> Satellit <br>
<input type="checkbox" name="Terrain" value="Terrain"> Terrain
</form>
</fieldset>
<br>
<a href="index.html"><input type="button" class="bestaetigen" value="Bestätigen"></a>
<input id="backfilter" type="button" class="zurueck" value="Zurück">
</form>
</div>
<div id="popuproute">
<h1>Routenplaner</h1>
<form action="/action_page.php">
<fieldset>
<legend><strong>Route</strong></legend>
Start<br>
<input type="text" name="start">
<br>
Ziel<br>
<input type="text" name="ziel">
<br>
</fieldset>
<br>
<fieldset>
<legend><strong>Zeiten</strong></legend>
<form>
<input type="checkbox" name="Abfahrt" value="Abfahrt"> Abfahrt
<input type="checkbox" name="Ankunft" value="Anunft"> Ankunft
</form>
<br> <br>
<i class="fa fa-clock-o" style="font-size:22px"></i>
<input type="time" name="uhrzeit">
<br> <br>
<i class="fa fa-calendar" style="font-size:20px"></i>
<input type="date" name="datum">
<br>
</fieldset>
<br>
<fieldset>
<form>
<input type="checkbox" name="Fußweg" value="Fußweg"> Fußweg <br>
<span id="Carsharing"><input type="checkbox" name="Carsharing" value="Carsharing"> Carsharing</span>
</form>
</fieldset>
<br>
<a href="index.html"><input type="button" class="bestaetigen" value="Bestätigen"></a>
<input id="backroute" type="button" class="zurueck" value="Zurück"></a>
</form>
</div>
<div>
<button onclick="setViewtostandort()" class="buttonstandort"><img src="Pins/leaf_BackToStandort.png" class="picturestandort"></img></button>
</div>
</body>
</html>