Add tunnel component and map connector component

This commit is contained in:
2026-02-05 22:02:31 +00:00
parent 4220cdfa5e
commit 4280ffe763
8 changed files with 404 additions and 93 deletions

View File

@@ -8,6 +8,7 @@ import Loop from '$lib/components/mapIcons/Loop.svelte';
import SignallerChange from '$lib/components/mapIcons/SignallerChange.svelte';
import ElectrificationChange from '$lib/components/mapIcons/ElectrificationChange.svelte';
import SiteOf from '$lib/components/mapIcons/SiteOf.svelte';
import Tunnel from '$lib/components/mapIcons/Tunnel.svelte';
export const components = {
station: Station,
@@ -21,5 +22,6 @@ export const components = {
loops: Loop,
signallerChange: SignallerChange,
electrificationChange: ElectrificationChange,
default: BaseTrack
default: BaseTrack,
tunnel: Tunnel,
};