-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (42 loc) · 1016 Bytes
/
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
49
50
51
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Using Parcel with OpenLayers</title>
<style>
#map {
width: 100%;
height: 500px;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="./copyIndex.js"></script>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>OpenLayers Project</title>
<!-- ol-ext -->
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
<style>
.map {
width: 100%;
height: 800px;
}
</style>
</head>
<body>
<div id="map" class="map"></div>
<!-- <label for="speed">
speed:
<input id="speed" type="range" min="10" max="999" step="10" value="60">
</label> -->
<!-- <button id="start-animation">Start Animation</button> -->
<script src="index.js"></script>
</body>
</html>