diff --git a/static/index.html b/static/index.html index 08df094..b72227d 100644 --- a/static/index.html +++ b/static/index.html @@ -50,11 +50,11 @@ .decode(new Uint8Array(bin)); vehicles.forEach((vehicle) => { - L.circle([vehicle.lat, vehicle.lon], { + L.circleMarker([vehicle.lat, vehicle.lon], { fillColor: COLORS[vehicle.line], color: COLORS[vehicle.line], fillOpacity: 0.5, - radius: 200, + radius: 8, }) .addTo(map) .bindPopup(vehicle.nearestStation.name);