Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[N/A]: sets individual opacity for conservation areas #1564

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/hooks/map/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,23 +252,23 @@ export function useWDPAPreviewLayer({
},
render: {
layers: [
{
...visibleCategories.map((id) => ({
type: 'fill',
'source-layer': 'layer0',
layout: {
visibility: 'visible',
},
// wdpaIucnCategories are filtered in two steps as they are custom and WDPA.
// We have not way to separate them into two arrays but it would be ideal
filter: [
'any',
['all', ['in', ['get', 'iucn_cat'], ['literal', visibleCategories]]],
['all', ['in', ['get', 'id'], ['literal', visibleCategories]]],
['all', ['in', ['get', 'iucn_cat'], ['literal', id]]],
['all', ['in', ['get', 'id'], ['literal', id]]],
],
paint: {
'fill-color': COLORS['wdpa-preview'],
'fill-opacity': layerSettings[id]?.opacity || 1,
},
},
})),
{
type: 'line',
'source-layer': 'layer0',
Expand Down
Loading