blob: d6be02527e09f1674de2d93f8a16607213b2cf6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exploatering i Norr</title>
</head>
<body>
<div id="map"></div>
<div id="layer-selection-btn" class="ol-control ol-unselectable">
<button type="button" aria-expanded="false" title="Byt kartlager">
<i class="bi bi-stack"></i>
</button>
</div>
<div id="layer-selection-dialog" class="ol-control map-dialog map-dialog-hidden">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="layer-topowebb_nedtonad">
<label class="form-check-label" for="layer-topowebb_nedtonad">Nedtonad bakgrund karta</label>
</div>
</div>
<script type="module" src="./main.js"></script>
</body>
</html>
|