From f1edc0d2d61e65bd086abaa0a138c7eded5e78ed Mon Sep 17 00:00:00 2001 From: vcoppe Date: Mon, 15 Jul 2024 23:31:51 +0200 Subject: [PATCH] improve mapillary coverage contrast --- .../lib/components/street-view-control/Mapillary.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/src/lib/components/street-view-control/Mapillary.ts b/website/src/lib/components/street-view-control/Mapillary.ts index dc7d4f32..66fd156c 100644 --- a/website/src/lib/components/street-view-control/Mapillary.ts +++ b/website/src/lib/components/street-view-control/Mapillary.ts @@ -17,9 +17,9 @@ const mapillarySequenceLayer = { source: 'mapillary', 'source-layer': 'sequence', paint: { - 'line-color': 'rgb(53, 175, 109)', - 'line-opacity': 0.5, - 'line-width': 4, + 'line-color': 'rgb(0, 150, 70)', + 'line-opacity': 0.7, + 'line-width': 5, }, layout: { 'line-cap': 'round', @@ -33,9 +33,9 @@ const mapillaryImageLayer = { source: 'mapillary', 'source-layer': 'image', paint: { - 'circle-color': 'rgb(53, 175, 109)', - 'circle-radius': 4, - 'circle-opacity': 0.5, + 'circle-color': 'rgb(0, 150, 70)', + 'circle-radius': 5, + 'circle-opacity': 0.7, }, };