{#if $overpassPopupPOI}
{tags.name ?? ''}
{$overpassPopupPOI.lat.toFixed(6)}° {$overpassPopupPOI.lon.toFixed(6)}°
{#if tags.image || tags['image:0']}
{/if}
{#each Object.entries(tags) as [key, value]} {#if key !== 'name' && !key.includes('image')}
{key}
{#if key === 'website' || key === 'contact:website' || key === 'contact:facebook' || key === 'contact:instagram' || key === 'contact:twitter'}
{value}
{:else if key === 'phone' || key === 'contact:phone'}
{value}
{:else if key === 'email' || key === 'contact:email'}
{value}
{:else}
{value}
{/if} {/if} {/each}
{/if}