From 7f347854be21bb81b3b79e91a589d605336cf2d4 Mon Sep 17 00:00:00 2001 From: Max Kohler Date: Wed, 28 May 2025 10:07:23 +0200 Subject: [PATCH] fix bridge-street-trunk-link --- .../src/maplibre/MapStyle/components/Roads.ts | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/components/src/maplibre/MapStyle/components/Roads.ts b/components/src/maplibre/MapStyle/components/Roads.ts index 80675592..055cc74a 100644 --- a/components/src/maplibre/MapStyle/components/Roads.ts +++ b/components/src/maplibre/MapStyle/components/Roads.ts @@ -499,16 +499,7 @@ export default function makeRoads() { }, paint: { 'line-color': motorway.line_color, - 'line-opacity': 0.5, - 'line-width': { - stops: [ - [12, 3], - [14, 4], - [16, 10], - [18, 20], - [20, 56] - ] - } + 'line-width': motorway.line_width }, minzoom: 13 }, @@ -754,7 +745,7 @@ export default function makeRoads() { filter: ['all', ['==', 'bridge', true], ['in', 'kind', 'trunk'], ['==', 'link', true]], paint: { 'line-color': motorway_outline.line_color, - 'line-width': motorway_outline.line_width + 'line-width': motorway_link_outline.line_width }, layout: street_layout, minzoom: 13