diff --git a/src/app.html b/src/app.html
index 87e00bb..b45dce6 100644
--- a/src/app.html
+++ b/src/app.html
@@ -7,6 +7,7 @@
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
+
OwlBoard Maps
%sveltekit.head%
diff --git a/src/lib/components/RouteRow.svelte b/src/lib/components/RouteRow.svelte
index bd92df9..8647f9c 100644
--- a/src/lib/components/RouteRow.svelte
+++ b/src/lib/components/RouteRow.svelte
@@ -1,12 +1,19 @@
@@ -18,9 +25,10 @@
-
+
+
{#if feature.name}
{feature.name}
@@ -29,18 +37,31 @@
{feature.description}
{/if}
+ {#if isLinkable}
+
+
+
+ {/if}
+
+
+
diff --git a/src/lib/components/mapIcons/Crossing.svelte b/src/lib/components/mapIcons/Crossing.svelte
index 49ce309..6b7ede2 100644
--- a/src/lib/components/mapIcons/Crossing.svelte
+++ b/src/lib/components/mapIcons/Crossing.svelte
@@ -9,10 +9,9 @@
$: type = feature.kind.toLowerCase();
$: isFoot = type === 'foot';
- $: filterCategory = isFoot ? 'foot' : type === 'uwc' ? 'uwc' : 'level-crossing';
-