-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html>
<head>
<!-- Basic metadata for a mobile-responsive page -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title></title>
<!-- Leaflet -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" crossorigin=""></script>
<link rel="stylesheet" href="css/styles.css">
<!--<script>
// Helper function
let domReady = (cb) => {
document.readyState === 'interactive' || document.readyState === 'complete'
? cb()
: document.addEventListener('DOMContentLoaded', cb);
};
domReady(() => {
// Display body when DOM is loaded
document.body.style.visibility = 'visible';
});
</script>-->
</head>
<body style="visibility: hidden;">
<div id="map"></div>
<div id="content-overlay">
<h1></h1>
<div id="info">
<p>
Seconds passed: <span id="loadingTime">0</span>s
</p>
<p>
<span id="totalVehicles">0</span> IDs received without finding vehicleID <span id="targetVehicleId"></span>
</p>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>