From 8575d87c1829c6e2922d2fc1d7f0f8f04fb096eb Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Wed, 19 Nov 2025 21:16:42 +0100 Subject: [PATCH] Fix order of backbone neighbours and assume sumetrical connections --- src/public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/public/index.html b/src/public/index.html index b12b6a5..10eebc8 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3714,12 +3714,12 @@ // additional line for backbone neighbours const backboneNeighbourLine = L.polyline([ - currentNode.getLatLng(), neighbourNodeMarker.getLatLng(), + currentNode.getLatLng(), ], { color: getColourForSnr(neighbour.snr), opacity: 0.75, - offset: symmetrical ? 3 : 0, + offset: 3, // assuming symmetrical connection }).arrowheads({ size: '10px', fill: true,