Spaces:
Runtime error
Runtime error
File size: 968 Bytes
acb7132 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Transportation Dashboard</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.0/socket.io.js"></script>
<script type="text/javascript">
var socket = io();
socket.on('update_data', function(data) {
document.getElementById('vehicle-locations').innerHTML = JSON.stringify(data.locations);
document.getElementById('routes').innerHTML = JSON.stringify(data.routes);
document.getElementById('schedules').innerHTML = JSON.stringify(data.schedules);
});
</script>
</head>
<body>
<h1>Transportation Dashboard</h1>
<div id="map">{{ map|safe }}</div>
<h2>Vehicle Locations</h2>
<div id="vehicle-locations">{{ locations }}</div>
<h2>Optimized Routes</h2>
<div id="routes">{{ routes }}</div>
<h2>Optimized Schedules</h2>
<div id="schedules">{{ schedules }}</div>
</body>
</html> |