From f27327b8f241ae4506004897bd1e88e7461aa82f Mon Sep 17 00:00:00 2001 From: acatchpole Date: Wed, 20 Dec 2023 08:51:14 -0800 Subject: [PATCH] increased circle-stroke-width to make the halo indicating 'aquifer parameters' more noticeable --- app/frontend/src/common/mapbox/layers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/frontend/src/common/mapbox/layers.js b/app/frontend/src/common/mapbox/layers.js index 639317bee..c0d8f30b8 100644 --- a/app/frontend/src/common/mapbox/layers.js +++ b/app/frontend/src/common/mapbox/layers.js @@ -287,7 +287,7 @@ export function wellsBaseAndArtesianLayer (options = {}) { ['to-boolean', ['get', 'artesian']], '#EE14CA', 'transparent' ], - 'circle-stroke-width': 1 + 'circle-stroke-width': 2.5 }) const filter = options.filter || wellLayerFilter(false) @@ -313,7 +313,7 @@ export function searchedWellsLayer (options = {}) { ['to-boolean', ['get', 'artesian_conditions']], '#EE14CA', 'black' ], - 'circle-stroke-width': 2 + 'circle-stroke-width': 2.5 }) return layerConfig(layerId, options.source || SEARCHED_WELLS_SOURCE_ID, options.layerType || 'circle', styles, options.layout)