Show only borders of areas with events

This commit is contained in:
Paul Bienkowski 2022-07-25 17:03:22 +02:00 committed by gluap
parent 2ecd94baba
commit 19a8112905
No known key found for this signature in database

View file

@ -133,7 +133,8 @@ export const getRegionLayers = (adminLevel = 6, baseColor = "#00897B", maxValue
"maxzoom": 10,
"filter": [
"all",
["==", "admin_level", adminLevel]
["==", "admin_level", adminLevel],
[">", "overtaking_event_count", 0],
],
"paint": {
"fill-color": baseColor,
@ -164,7 +165,8 @@ export const getRegionLayers = (adminLevel = 6, baseColor = "#00897B", maxValue
"maxzoom": 10,
"filter": [
"all",
["==", "admin_level", adminLevel]
["==", "admin_level", adminLevel],
[">", "overtaking_event_count", 0],
],
"paint": {
"line-width": 1,