-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (24 loc) · 963 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AI Camera Locations</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v3.0.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v3.0.1/mapbox-gl.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@turf/turf@6.5.0/turf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/mapbox-gl-animated-popup@latest/dist/mapbox-gl-animated-popup.min.js"></script>
<link href ="style.css" rel="stylesheet">
</head>
<body>
<!-- Map -->
<div id="map"></div>
<!-- Banner -->
<div id="banner" class="hidden">
<div id="bannerContent"></div>
<!-- <button id="closeBanner" onclick="hideBanner()">Close</button> -->
</div>
<!-- Popup -->
<script src="./index.js" type="module"></script>
</body>
</html>