diff --git a/src/lib/components/lnv/Map.svelte b/src/lib/components/lnv/Map.svelte index 21cb72d..61802bc 100644 --- a/src/lib/components/lnv/Map.svelte +++ b/src/lib/components/lnv/Map.svelte @@ -9,7 +9,7 @@ } from "svelte-maplibre-gl"; import { view } from "./sidebar.svelte"; import { map, pin } from "./map.svelte"; - import { routing } from "$lib/services/navigation/routing.svelte"; + import { decodePolyline, routing } from "$lib/services/navigation/routing.svelte"; import { location } from "./location.svelte"; onMount(() => { @@ -19,6 +19,8 @@ let locationDot: HTMLDivElement | undefined = $state(); let locationAccuracyCircle: HTMLDivElement | undefined = $state(); + + const DEBUG_POINTS = false; // Set to true to show debug points on the map + {#if routing.currentTrip && DEBUG_POINTS} + + + + {/if}