-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapbox.html
32 lines (28 loc) · 1.18 KB
/
mapbox.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
<!doctype html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.js'></script>
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.5.0/proj4.js"></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="styles/style.css">
<title>MapBox example</title>
</head>
<body>
<div id='map'></div>
<script src='js/mapbox.js'></script>
<script src='js/main.js'></script>
<script src='js/data-handler.js'></script>
<script src="js/data-search.js"></script>
<script src='js/national-interest.js'></script>
<script src='js/interaction.js'></script>
<input type="text" id="myInput" onkeyup="searchInput()" placeholder="Search for names..">
<div id="map-overlay" class="map-overlay"></div>
<div id="information">
<h1 id="name"></h1>
<p id="id"><b></b></p>
<p id="description"></p>
</div>
</body>
</html>