From 95ed0e339fcc660dac5921db0460afb4dae41438 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 22 Aug 2026 13:15:39 +1000 Subject: [PATCH] Add a flight arc on the map for flights with same departing and arrival airport --- resources/js/Components/FlightsGoneBy/FlightMap.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/Components/FlightsGoneBy/FlightMap.vue b/resources/js/Components/FlightsGoneBy/FlightMap.vue index f337ae6..e292bab 100644 --- a/resources/js/Components/FlightsGoneBy/FlightMap.vue +++ b/resources/js/Components/FlightsGoneBy/FlightMap.vue @@ -370,7 +370,7 @@ export default defineComponent({ link.click() } - function loopPoints(origin: LngLat, radiusDeg = 0.4, steps = 48): LngLat[] { + function loopPoints(origin: LngLat, radiusDeg = 0.2, steps = 48): LngLat[] { const [lng, lat] = origin // Widen the longitude radius to compensate for mercator distortion at this latitude -- 2.54.0