-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 3.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JackBus | Metrobus Tracker</title>
<meta name="description" content="Track all buses of Metrobus. Get live updates on current bus locations, routes, etc.">
<meta name="keywords" content="metrobus tracker, metrobus live bus tracking, metrobus bus routes, metrobus real-time bus updates, metrobus jackbus, st johns metrobus, st johns public transport">
<meta name="author" content="MuxAI">
<meta name="robots" content="index, follow">
<meta property="og:title" content="JackBus | Metrobus Tracker">
<meta property="og:description" content="Track all buses of Metrobus. Get live updates on current bus locations, routes, etc.">
<meta property="og:image" content="https://dewanmukto.com/asset/images/appimage04.png">
<meta property="og:url" content="https://jackbus.muxday.com">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@JackBus">
<meta name="twitter:title" content="JackBus | Metrobus Tracker">
<meta name="twitter:description" content="Track all buses of Metrobus. Get live updates on current bus locations, routes, etc.">
<meta name="twitter:image" content="https://dewanmukto.com/asset/images/appimage04.png"><!-- Jackbus by MuxAI -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.png" type="image/png">
<link rel="apple-touch-icon" href="favicon.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon.png">
<link rel="apple-touch-icon" sizes="167x167" href="favicon.png">
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Work+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B9ML79EQ0F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B9ML79EQ0F');
</script>
</head>
<body><!-- Dewan Mukto was here -->
<h1 id="animatedHeading">Jackbus™ Metrobus Tracker</h1><!-- named after Jack Arthur Harrhy -->
<div class="container">
<div id="map"></div>
<div id="localTimeOverlay" class="local-time-overlay">⏳</div>
<div class="overlay-container">
<div id="refreshOverlay" class="refresh-overlay" onclick="handleRefresh()">Refresh</div>
<div id="timerOverlay" class="timer-overlay">Updating in ...</div>
</div>
<button class="accordion">Click here for raw data</button>
<div class="panel" id="rawData">
<!-- Raw data from JSON inserted here -->
</div>
</div>
<div class="bus-numbers-toggle" onclick="toggleBusNumbers()">Bus Numbers</div>
<div class="bus-numbers" id="busNumbers"></div>
<script src="script.js"></script>
</body>
</html>