From 7e47874f7800c7cf8bc78b327f3497ad575ea16e Mon Sep 17 00:00:00 2001 From: Kaaninchen <124433727+kaaninchen@users.noreply.github.com> Date: Thu, 20 Aug 2026 17:53:22 +0200 Subject: [PATCH] remove circles on layovers in the embed map they were ugly and also took forever to generate --- src/utils.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/utils.py b/src/utils.py index 590e184..109630e 100644 --- a/src/utils.py +++ b/src/utils.py @@ -279,16 +279,6 @@ def generate_static_map(stops: dict, mode: str, operator: str, route_color: str) size=12 ) ) - elif mode not in ["TRAM", "BUS", "SUBWAY", "SUBURBAN", "METRO"]: # wayyy too many stops... - context.add_object( - staticmaps.Circle( - center=point, - fill_color=white, - radius_km=0.1, - color=stop_color, - width=10, - ) - ) lats = [c.lat().degrees for c in stop_coords] lons = [c.lng().degrees for c in stop_coords]