Skip to content

Commit

Permalink
Merge pull request #2084 from bcgov/change-well-halo
Browse files Browse the repository at this point in the history
[FEATURE][GWELLS-#2053] changed hex colour values for hydraulic wells to be more visible
  • Loading branch information
acatchpole authored Dec 18, 2023
2 parents 1c01e63 + c2ecee2 commit 01eeb86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/frontend/src/common/assets/images/wells-hydraulic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions app/frontend/src/common/mapbox/layers.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export function wellsBaseAndArtesianLayer (options = {}) {
'circle-radius': 3,
'circle-stroke-color': [
'case',
['boolean', ['get', 'has_hydraulic_info']], '#e29200',
['boolean', ['get', 'has_hydraulic_info']], '#5dfa57',
['to-boolean', ['get', 'artesian']], '#EE14CA',
'transparent'
],
Expand All @@ -307,9 +307,9 @@ export function searchedWellsLayer (options = {}) {
'circle-radius': 5,
'circle-stroke-color': [
'case',
['to-boolean', ['get', 'storativity']], '#e29200',
['to-boolean', ['get', 'transmissivity']], '#e29200',
['to-boolean', ['get', 'hydraulic_conductivity']], '#e29200',
['to-boolean', ['get', 'storativity']], '#5dfa57',
['to-boolean', ['get', 'transmissivity']], '#5dfa57',
['to-boolean', ['get', 'hydraulic_conductivity']], '#5dfa57',
['to-boolean', ['get', 'artesian_conditions']], '#EE14CA',
'black'
],
Expand Down

0 comments on commit 01eeb86

Please sign in to comment.