2 import { formatOSMType } from '../lib/helpers.js';
4 let { osmType, osmId } = $props();
6 const osmTypeString = $derived(formatOSMType(osmType, false));
8 const href = $derived(`https://www.openstreetmap.org/${osmTypeString}/${osmId}`);
13 <a {href}>{osmTypeString} {osmId}</a>