-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 897 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 897 Bytes
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>
<head>
<meta charset='utf-8' />
<title>Remote Monitoring Map using Mapbox</title>
<link rel="stylesheet" href="css/main.css">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v2.11.0/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.11.0/mapbox-gl.js"></script>
</head>
<body>
<div data-tap-disabled="true">
<div id='map'></div>
</div>
<div class='map-overlay' id='features'>
<h2>IEEE Smart Village Map</h2>
<div id='pd'>
<p>Hover over a point to see details on each site.</p>
</div>
</div>
<div class='map-overlay' id='legend'></div>
<button id="toggleProjection">Toggle Projection</button>
<script src="js/main.js"></script>
</body>
</html>