revert rivers

This commit is contained in:
vcoppe
2026-05-25 11:00:55 +02:00
parent 480d5586b9
commit a0408ec798
@@ -21,6 +21,65 @@
"type": "raster",
"source": "esri"
},
{
"id": "waterway_river",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"filter": [
"all",
["==", ["get", "class"], "river"],
["!=", ["get", "brunnel"], "tunnel"]
],
"layout": {"line-cap": "round"},
"paint": {
"line-color": "#a0c8f0",
"line-width": [
"interpolate",
["exponential", 1.2],
["zoom"],
11,
0.5,
20,
6
],
"line-opacity":[
"interpolate", ["linear"], ["zoom"],
13, 0.5,
15, 0.3
]
}
},
{
"id": "waterway_other",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"filter": [
"all",
["!=", ["get", "class"], "river"],
["!=", ["get", "brunnel"], "tunnel"]
],
"layout": {"line-cap": "round"},
"paint": {
"line-color": "#a0c8f0",
"line-width": [
"interpolate",
["exponential", 1.3],
["zoom"],
13,
0.5,
20,
6
],
"line-opacity":[
"interpolate", ["linear"], ["zoom"],
13, 0.5,
15, 0.3
]
}
},
{
"id": "tunnel_path_pedestrian",
"type": "line",