-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 929 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vector Layer</title>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v3/polyfill.min.js?features=fetch,requestAnimationFrame,Element.prototype.classList,URL,TextDecoder,Number.isInteger"></script>
<script>var lat = 42.9028;
var lon = -71.2588;
var speed = '0.00 km/h';
var altitude = '137.2 m';
var path = 'LINESTRING(-71.25881 42.90276,-71.25881 42.90276,-71.2588 42.90276)';
</script>
<style>.map {
width: 100%;
height: 600px;
}</style>
<body>
<div id="map" class="map"></div>
<div id="info"> </div>
<script src="/main.js"></script>
</body>
</html>