Naruto9 commited on
Commit
acb7132
·
verified ·
1 Parent(s): 7d537ca

Create dashboard.html

Browse files
Files changed (1) hide show
  1. dashboard.html +26 -0
dashboard.html ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Transportation Dashboard</title>
6
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.0/socket.io.js"></script>
7
+ <script type="text/javascript">
8
+ var socket = io();
9
+ socket.on('update_data', function(data) {
10
+ document.getElementById('vehicle-locations').innerHTML = JSON.stringify(data.locations);
11
+ document.getElementById('routes').innerHTML = JSON.stringify(data.routes);
12
+ document.getElementById('schedules').innerHTML = JSON.stringify(data.schedules);
13
+ });
14
+ </script>
15
+ </head>
16
+ <body>
17
+ <h1>Transportation Dashboard</h1>
18
+ <div id="map">{{ map|safe }}</div>
19
+ <h2>Vehicle Locations</h2>
20
+ <div id="vehicle-locations">{{ locations }}</div>
21
+ <h2>Optimized Routes</h2>
22
+ <div id="routes">{{ routes }}</div>
23
+ <h2>Optimized Schedules</h2>
24
+ <div id="schedules">{{ schedules }}</div>
25
+ </body>
26
+ </html>