This commit is contained in:
2025-08-05 12:00:23 -06:00
parent 3ae80dd1f7
commit ef1e11fecc
4 changed files with 20 additions and 4 deletions
+3 -1
View File
@@ -57,7 +57,9 @@
radius: 8,
})
.addTo(map)
.bindPopup(vehicle.nearestStation.name);
.bindPopup(
`${vehicle.headsign}<br />@ ${vehicle.nearestStation.name}`
);
});
});
</script>