From 3eed255eb432d25fc3866a913b6a6b265afe48d0 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Fri, 25 Apr 2025 17:36:52 +1200 Subject: [PATCH] use purple lines between position history markers --- src/public/index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index b4ca342..b4733f1 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3684,7 +3684,10 @@ } // show lines between position history markers - L.polyline(positionHistoryLinesCords).addTo(nodePositionHistoryLayerGroup); + L.polyline(positionHistoryLinesCords, { + color: "#a855f7", + opacity: 1, + }).addTo(nodePositionHistoryLayerGroup); }