/** Opens Google Maps with the address pre-filled — no API key required. */ export function mapsSearchUrl(address: string): string { return `https://www.google.com/maps/search/?api=1&query=${encodeURIComponent(address)}`; } /** Embeddable Google Maps iframe src for the given address — no API key required. */ export function mapsEmbedUrl(address: string): string { return `https://maps.google.com/maps?q=${encodeURIComponent(address)}&output=embed`; }