f3d16d5187
Build pipeline (scripts/build-hikes.ts) parses per-hike GPX, encodes images via sharp, reverse-geocodes the centroid against Swisstopo and emits a typed manifest under src/lib/data/hikes.generated.ts (gitignored). Track JSON + image binaries live outside /static; served in dev by a small hike-images plugin in vite.config.ts, in prod by nginx (private/ images proxied through Node + X-Accel-Redirect for auth-gating). /hikes overview: full-bleed Swisstopo hero map (HikesOverviewMap) sits under the sticky nav, drawing one polyline per route coloured by SAC tier (T1 yellow Wegweiser, T2/T3 white-red-white, T4-T6 white-blue- white). Click navigates, hover thickens + tooltips. Layer toggle, recenter, GPS controls mirror the detail map (minus images toggle). Cards drop the trail SVG, gain a per-route icon + SAC marker pictogram on the cover, altitude range, season label, and "Neu" badge for recently-published hikes. Filter bar + totals strip recompute over the currently-visible set. /hikes/[slug]: hero map with elevation profile, photo strip with map sync, scroll-position pin, GPX download, SAC marker stats + min/max altitude + season. Route-builder (/hikes/route-builder): client-side draft persisted to localStorage, EXIF-driven image placement, snap-to-route via BRouter (OSRM + linear fallback) and Swisstopo profile.json elevation enrichment that handles degenerate same-coord segments via the height endpoint. Filter init switched from a script-time snapshot of data.hikes (which sporadically returned a one-hike subset during dev hydration and locked the page to that single hike) to a post-mount \$effect. Content under src/content/hikes/ intentionally not included (WIP).
117 lines
2.3 KiB
Svelte
117 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import type { Snippet } from 'svelte';
|
|
|
|
interface Props {
|
|
children?: Snippet;
|
|
}
|
|
|
|
const { children }: Props = $props();
|
|
</script>
|
|
|
|
<article class="hike-prose">
|
|
{@render children?.()}
|
|
</article>
|
|
|
|
<style>
|
|
.hike-prose {
|
|
max-width: 70ch;
|
|
margin-inline: auto;
|
|
color: var(--color-text-primary);
|
|
line-height: 1.7;
|
|
font-size: var(--text-base, 1rem);
|
|
}
|
|
|
|
.hike-prose :global(h2) {
|
|
margin-top: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
font-size: var(--text-2xl, 1.5rem);
|
|
color: var(--color-text-primary);
|
|
}
|
|
|
|
.hike-prose :global(h3) {
|
|
margin-top: 2rem;
|
|
margin-bottom: 0.75rem;
|
|
font-size: var(--text-xl, 1.25rem);
|
|
color: var(--color-text-primary);
|
|
}
|
|
|
|
.hike-prose :global(p) {
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
.hike-prose :global(a) {
|
|
color: var(--color-primary);
|
|
text-decoration: underline;
|
|
text-underline-offset: 0.15em;
|
|
}
|
|
|
|
.hike-prose :global(a:hover) {
|
|
color: var(--color-primary-hover);
|
|
}
|
|
|
|
.hike-prose :global(blockquote) {
|
|
margin-block: 1.5rem;
|
|
padding: 0.75rem 1rem;
|
|
border-inline-start: 3px solid var(--color-primary);
|
|
background: var(--color-bg-secondary);
|
|
border-radius: var(--radius-md);
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
.hike-prose :global(img) {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin-block: 1.5rem;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.hike-prose :global(figure) {
|
|
margin-block: 1.5rem;
|
|
}
|
|
|
|
.hike-prose :global(figcaption) {
|
|
text-align: center;
|
|
font-size: var(--text-sm, 0.875rem);
|
|
color: var(--color-text-tertiary);
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.hike-prose :global(ul),
|
|
.hike-prose :global(ol) {
|
|
padding-inline-start: 1.5rem;
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
.hike-prose :global(li) {
|
|
margin-block: 0.4rem;
|
|
}
|
|
|
|
.hike-prose :global(code) {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 0.9em;
|
|
background: var(--color-bg-tertiary);
|
|
padding: 0.1em 0.35em;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.hike-prose :global(pre) {
|
|
background: var(--color-bg-tertiary);
|
|
padding: 1rem;
|
|
border-radius: var(--radius-md);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.hike-prose :global(pre code) {
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.hike-prose :global(hr) {
|
|
margin-block: 2rem;
|
|
border: 0;
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
</style>
|