mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-04 01:22:32 +00:00
refactoring for tools and start waypoint
This commit is contained in:
13
website/src/lib/components/gpx-layer/WaypointPopup.svelte
Normal file
13
website/src/lib/components/gpx-layer/WaypointPopup.svelte
Normal file
@@ -0,0 +1,13 @@
|
||||
<script lang="ts">
|
||||
import * as Card from '$lib/components/ui/card';
|
||||
|
||||
import { _ } from 'svelte-i18n';
|
||||
|
||||
export let element: HTMLElement;
|
||||
</script>
|
||||
|
||||
<div bind:this={element} class="hidden">
|
||||
<Card.Root class="border-none shadow-md text-base">
|
||||
<Card.Content class="flex flex-col p-1">Waypoint info (TODO)</Card.Content>
|
||||
</Card.Root>
|
||||
</div>
|
Reference in New Issue
Block a user