2024-04-24 16:12:50 +02:00
|
|
|
<script lang="ts">
|
2024-04-25 13:48:31 +02:00
|
|
|
import GPXMapLayers from '$lib/components/gpx-layer/GPXMapLayers.svelte';
|
2024-04-24 16:12:50 +02:00
|
|
|
import ElevationProfile from '$lib/components/ElevationProfile.svelte';
|
|
|
|
import FileList from '$lib/components/FileList.svelte';
|
|
|
|
import GPXData from '$lib/components/GPXData.svelte';
|
|
|
|
import Map from '$lib/components/Map.svelte';
|
|
|
|
import Menu from '$lib/components/Menu.svelte';
|
|
|
|
import Toolbar from '$lib/components/toolbar/Toolbar.svelte';
|
|
|
|
import LayerControl from '$lib/components/layer-control/LayerControl.svelte';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="flex flex-col w-screen h-screen">
|
|
|
|
<div class="grow relative">
|
|
|
|
<Menu />
|
|
|
|
<Toolbar />
|
|
|
|
<Map class="h-full" />
|
|
|
|
<LayerControl />
|
2024-04-24 19:32:55 +02:00
|
|
|
<GPXMapLayers />
|
2024-04-24 16:12:50 +02:00
|
|
|
<FileList />
|
|
|
|
</div>
|
|
|
|
<div class="h-60 flex flex-row gap-2 overflow-hidden border">
|
|
|
|
<GPXData />
|
|
|
|
<ElevationProfile />
|
|
|
|
</div>
|
|
|
|
</div>
|