-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (21 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>OpenLayers Label Plugin</title>
<link rel="icon" type="image/x-icon" href="https://openlayers.org/assets/theme/img/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="lib/openlayers/5.3.0/ol.css" type="text/css">
<link rel="stylesheet" href="lib/ol-geocoder/ol-geocoder.min.css" type="text/css">
<link rel="stylesheet" href="dist/ol-labels.css" type="text/css">
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="lib/openlayers/5.3.0/ol.js"></script>
<script src="lib/ol-geocoder/ol-geocoder.min.js"></script>
<script src="dist/ol-labels.js"></script>
</head>
<body>
<div id="map" class="map" style="height:100vh; width:100vw"></div>
<script src="dist/main.js"></script>
</body>
</html>