-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<title>Weltreise Carolin & Jonathan</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="module" src="main.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://kit.fontawesome.com/2cc61ebdfb.js" crossorigin="anonymous"></script>
<script src="https://www.webglearth.com/v2/api.js"></script>
</head>
<body>
<div id="left-sidebar">
<div class="controls">
<h2>Filter</h2>
<br>
<div class="headline-with-button">
<h5>Länder</h5>
<button id="selectAllButton" onclick="selectAll()">Alle auswählen</button>
</div>
<div class="filterButtonContainer" id="countryButtonContainer">
<!-- Button will be dynamically added here -->
</div>
<br>
<div class="headline-with-button">
<h5>Kategorien</h5>
<button id="selectAllButton" onclick="selectAll()">Alle auswählen</button>
</div>
<div class="filterButtonContainer" id="categoryButtonContainer">
<!-- Button will be dynamically added here -->
</div>
</div>
</div>
<div class="searchbar-container">
<i class="fa fa-search"></i>
<input type="text" id="searchField" placeholder="Search.." onkeyup="search()">
</div>
<div id="map"></div>
</body>
</html>