From 6a147f6c2c248a3b6c63fb4a5e7bcc1b6f5812a8 Mon Sep 17 00:00:00 2001 From: phl0 Date: Wed, 12 Oct 2022 13:20:46 +0200 Subject: [PATCH] Remove unneeded polygon and make lines thinner --- assets/js/sections/cqmap.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/js/sections/cqmap.js b/assets/js/sections/cqmap.js index 76964082..06f6f43b 100644 --- a/assets/js/sections/cqmap.js +++ b/assets/js/sections/cqmap.js @@ -131,7 +131,6 @@ function load_cq_map2(data) { var workednotconfirmed = 0; for (var i = 0; i < cqzones.length; i++) { - L.Polyline.fromEncoded(cqzones[i]).addTo(map); var mapColor = 'red'; if (data[i] == 'C') { @@ -146,7 +145,7 @@ function load_cq_map2(data) { } L.Polygon.fromEncoded(cqzones[i], { - weight: 3, + weight: 2, color: mapColor, strokeOpacity: 0.3, strokeWeight: 2,