2024-04-05 17:53:42 +02:00
|
|
|
<script lang="ts">
|
2024-04-16 22:57:28 +02:00
|
|
|
import Data from '$lib/components/Data.svelte';
|
2024-04-18 10:52:45 +02:00
|
|
|
import FileList from '$lib/components/FileList.svelte';
|
2024-04-08 14:52:13 +02:00
|
|
|
import Map from '$lib/components/Map.svelte';
|
2024-04-08 17:12:39 +02:00
|
|
|
import Menu from '$lib/components/Menu.svelte';
|
2024-04-09 18:46:01 +02:00
|
|
|
import Toolbar from '$lib/components/Toolbar.svelte';
|
2024-04-16 22:57:28 +02:00
|
|
|
import LayerControl from '$lib/components/layer-control/LayerControl.svelte';
|
2024-04-05 17:53:42 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="flex flex-col w-screen h-screen">
|
2024-04-09 17:37:23 +02:00
|
|
|
<div class="grow relative">
|
|
|
|
<Menu />
|
2024-04-09 18:46:01 +02:00
|
|
|
<Toolbar />
|
2024-04-17 11:44:37 +02:00
|
|
|
<Map class="h-full" />
|
|
|
|
<LayerControl />
|
|
|
|
<Data />
|
2024-04-09 17:37:23 +02:00
|
|
|
</div>
|
2024-04-18 10:52:45 +02:00
|
|
|
<div class="h-60 flex flex-row">
|
|
|
|
<FileList />
|
|
|
|
</div>
|
2024-04-05 17:53:42 +02:00
|
|
|
</div>
|