feat(routing): increase distance for verbal pre instruction
Some checks failed
TrafficCue CI / check (push) Failing after 1m32s
TrafficCue CI / build (push) Successful in 9m47s
TrafficCue CI / build-android (push) Successful in 23m41s

This commit is contained in:
2025-10-02 21:41:43 +02:00
parent 6f0fbac13e
commit 3b28779b69

View File

@ -268,7 +268,7 @@ async function tickRoute() {
} }
function verbalPreInstructionDistance(speed: number): number { function verbalPreInstructionDistance(speed: number): number {
return Math.min(speed, 30) * 2.222 + 37.144; return (Math.min(speed, 30) * 2.222 + 37.144) * 2;
} }
export function stopNavigation() { export function stopNavigation() {