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.
This commit is contained in:
Hugh Rundle 2021-01-22 18:34:14 +11:00
parent 1f64423368
commit 4c48c96e01

View file

@ -67,7 +67,7 @@ Promise.all([boundaries, branchesCsv, ikcCsv, mechanics, nslaBranches])
weight: 3, weight: 3,
color: "white", color: "white",
dashArray: "4", dashArray: "4",
fillOpacity: 0.4 fillOpacity: 0.2
} }
}, },
onEachFeature: function onEachFeature(feature, layer) { onEachFeature: function onEachFeature(feature, layer) {
@ -133,7 +133,7 @@ Promise.all([boundaries, branchesCsv, ikcCsv, mechanics, nslaBranches])
weight: 3, weight: 3,
color: "#fff", color: "#fff",
dashArray: "4", dashArray: "4",
fillOpacity: 0.6, fillOpacity: 0.2,
fillColor: "#bbb", fillColor: "#bbb",
fillPattern: getLoanFillPattern(feature.properties.standard_loan_weeks) fillPattern: getLoanFillPattern(feature.properties.standard_loan_weeks)
} }