From 4c48c96e012513c9eb9e890ea9679f7622473868 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Fri, 22 Jan 2021 18:34:14 +1100 Subject: [PATCH] reduce opacity of overlays The fines and loan period overlays were too opaque and made it hard to see what they were overlayed onto - especially in Queensland with the whacky coastal shire boundaries. Reduced to make things more transparent literally and figuratively. --- website/load-map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/load-map.js b/website/load-map.js index 2e32675..5cf0314 100644 --- a/website/load-map.js +++ b/website/load-map.js @@ -67,7 +67,7 @@ Promise.all([boundaries, branchesCsv, ikcCsv, mechanics, nslaBranches]) weight: 3, color: "white", dashArray: "4", - fillOpacity: 0.4 + fillOpacity: 0.2 } }, onEachFeature: function onEachFeature(feature, layer) { @@ -133,7 +133,7 @@ Promise.all([boundaries, branchesCsv, ikcCsv, mechanics, nslaBranches]) weight: 3, color: "#fff", dashArray: "4", - fillOpacity: 0.6, + fillOpacity: 0.2, fillColor: "#bbb", fillPattern: getLoanFillPattern(feature.properties.standard_loan_weeks) }