{#each data.props.markers as { lngLat, name, type }} {#if type == 'visited'} (clickedName = name)} class="grid h-8 w-8 place-items-center rounded-full border border-gray-200 bg-red-300 text-black shadow-2xl focus:outline-2 focus:outline-black" >
{name}

Visited

{/if} {#if type == 'planned'} (clickedName = name)} class="grid h-8 w-8 place-items-center rounded-full border border-gray-200 bg-blue-300 text-black shadow-2xl focus:outline-2 focus:outline-black" >
{name}

Planned

{/if} {/each} {#if showGEO} {/if}