From 80bfa01d00b13d0efc9fafc6f8be919076ea3b96 Mon Sep 17 00:00:00 2001 From: Manuel Kasper Date: Fri, 22 Jul 2022 10:04:04 +0200 Subject: [PATCH] Improve visibility of GPS tracks --- src/components/MapRoute.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/MapRoute.vue b/src/components/MapRoute.vue index 68c291b..bb79b50 100644 --- a/src/components/MapRoute.vue +++ b/src/components/MapRoute.vue @@ -48,9 +48,9 @@ export default { 'line-cap': 'round' }, paint: { - 'line-color': this.route.highlight ? '#ff0000' : '#245acd', - 'line-width': 3, - 'line-opacity': 0.75 + 'line-color': this.route.highlight ? '#4fe005' : '#1cd60d', + 'line-width': this.route.highlight ? 4.5 : 3, + 'line-opacity': this.route.highlight ? 0.85 : 0.75 } } },