Improve visibility of GPS tracks

pull/12/head^2
Manuel Kasper 2022-07-22 10:04:04 +02:00
rodzic 7e48e62259
commit 80bfa01d00
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -48,9 +48,9 @@ export default {
'line-cap': 'round' 'line-cap': 'round'
}, },
paint: { paint: {
'line-color': this.route.highlight ? '#ff0000' : '#245acd', 'line-color': this.route.highlight ? '#4fe005' : '#1cd60d',
'line-width': 3, 'line-width': this.route.highlight ? 4.5 : 3,
'line-opacity': 0.75 'line-opacity': this.route.highlight ? 0.85 : 0.75
} }
} }
}, },