-
Notifications
You must be signed in to change notification settings - Fork 15
/
municipalities.html
44 lines (44 loc) · 1.6 KB
/
municipalities.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
<!doctype html>
<html lang="en">
<head>
<title>Suomen kunnat</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="./resources/ol.css" />
<link rel="stylesheet" href="./resources/ol3-layerswitcher.css">
<link rel="stylesheet" href="./resources/qgis2web.css">
<style>
html, body {
background-color: #000000;
}
</style>
<script src="resources/polyfills.js"></script>
<script src="./resources/ol.js"></script>
<script src="./resources/ol3-layerswitcher.js"></script>
<script src="layers/kunnat_pop2.js"></script>
<script src="styles/kunnat_pop2_style.js"></script>
<script src="./layers/layers.js" type="text/javascript"></script>
<style>
html, body, #map {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
</style>
<title></title>
</head>
<body>
<div id="map">
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
</div>
<script src="./resources/qgis2web.js"></script>
<script src="./resources/Autolinker.min.js"></script>
</body>
</html>