-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.26 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="https://openlayers.org/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TraveLATAM</title>
</head>
<body>
<div id="map"></div>
<div id="media-popup">
<div id="popup-controls">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
</div>
<div id="popup-content">
<div id="popup-images">
<button id="previous-image" class="carousel"><</button>
<button id="next-image" class="carousel">></button>
</div>
<div id="popup-caption"></div>
</div>
</div>
<div id="vehicle"></div>
<div id="info">Loading the photos layer ...</div>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep@1.0.6/dist/elm-pep.js"></script>
<button id="cancel" class="travel-control">Cancel ❌</button>
<button id="travel" class="travel-control">Vamos 🎒</button>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep@1.0.6/dist/elm-pep.js"></script>
<script type="module" src="./main.js"></script>
</body>
</html>