Files
gpx.studio/website/src/lib/components/GPXMapLayers.svelte

10 lines
197 B
Svelte
Raw Normal View History

2024-04-16 22:57:28 +02:00
<script lang="ts">
2024-04-24 19:32:55 +02:00
import GPXMapLayer from './GPXMapLayer.svelte';
2024-04-16 22:57:28 +02:00
2024-04-22 17:22:21 +02:00
import { fileCollection } from '$lib/stores';
2024-04-16 22:57:28 +02:00
</script>
2024-04-22 17:22:21 +02:00
{#each $fileCollection.files as file}
2024-04-24 19:32:55 +02:00
<GPXMapLayer {file} />
2024-04-16 22:57:28 +02:00
{/each}