-
Notifications
You must be signed in to change notification settings - Fork 0
/
leaflet.html
68 lines (62 loc) · 2.39 KB
/
leaflet.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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<title>Rikssök</title>
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="header">
<img src="https://o11.se/RAA/rikssök.png" alt="Logotyp">
<p id="number-of-elements"></p>
</div>
<div class="divider"></div>
<div class="sidepanel">
<div>
<div class="selection"><input type="text" placeholder="Sök" id="search"></div>
<div class="selection">
<select class="county" id="county" name="county">
<option value="" selected>Län</option>
</select>
</div>
<div class="selection">
<select class="municipality" id="municipality" name="municipality">
<option value="" selected>Kommun</option>
</select>
</div>
<div id="culturalEnvironmentTypes" class="dropdown-check-list" tabindex="100">
<span class="anchor">Kulturmiljötyper</span>
<div class="itemsContainer">
<ul class="items">
</ul>
</div>
</div>
</div>
<div id="result-table">
</div>
</div>
<div id="mapid"></div>
<div id="map-overlay" class="map-overlay"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@turf/turf@5/turf.min.js"></script>
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script>
<script src="https://o11.se/RAA/proj4.js"></script>
<script src="https://o11.se/RAA/proj4leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.5.0/proj4.js"></script>
<script src='js/data-handler.js'></script>
<script src='js/interface.js'></script>
<script src='js/leaflet.js'></script>
<script src='js/main.js'></script>
<script src="js/data-search.js"></script>
<script src='js/national-interest.js'></script>
</body>
</html>