From 1aa32cfa35c16b2723ce8ea6fc53b37d91a9603a 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 1d685bd..c68125d 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3765,7 +3765,10 @@ } // show lines between position history markers - L.polyline(positionHistoryLinesCords).addTo(nodePositionHistoryLayerGroup); + L.polyline(positionHistoryLinesCords, { + color: "#a855f7", + opacity: 1, + }).addTo(nodePositionHistoryLayerGroup); }