This repository has been archived on 2025-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
trafficcue-client/src/lib/components/lnv/MapLocationMarkers.svelte
Jannik 639b2c1aeb
All checks were successful
TrafficCue CI / check (push) Successful in 1m31s
TrafficCue CI / build (push) Successful in 9m49s
TrafficCue CI / build-android (push) Successful in 23m30s
style: run prettier
2025-10-03 19:54:14 +02:00

12 lines
385 B
Svelte

<script lang="ts">
import type { Location } from "$lib/saved.svelte";
import { stores } from "$lib/services/stores.svelte";
import MapLocationMarker from "./MapLocationMarker.svelte";
const locations = stores<Location>("location");
</script>
{#each locations.current as location (location.data.lat + "-" + location.data.lng)}
<MapLocationMarker store={location.data} />
{/each}