This commit is contained in:
vcoppe
2024-04-24 19:32:55 +02:00
parent e12a704c2e
commit 88c6681a78
8 changed files with 103 additions and 43 deletions

View File

@@ -0,0 +1,9 @@
<script lang="ts">
import GPXMapLayer from './GPXMapLayer.svelte';
import { fileCollection } from '$lib/stores';
</script>
{#each $fileCollection.files as file}
<GPXMapLayer {file} />
{/each}