From c7cc9d2a6531a48743203d4e6919c3ca15042fef Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sat, 15 May 2021 12:36:56 -0700 Subject: [PATCH] Disable SAM threat fill, thicken outline. As predicted, this only runs well on my machine. --- resources/ui/map/map.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/ui/map/map.js b/resources/ui/map/map.js index 309237ae..4bd82873 100644 --- a/resources/ui/map/map.js +++ b/resources/ui/map/map.js @@ -258,7 +258,8 @@ function drawSamThreatsAt(tgo) { L.circle(tgo.position, { radius: range, color: threatColor, - weight: 1, + fill: false, + weight: 2, }).addTo(threatLayer); }); }