{#if view.loading}
{m.loading()}
{:else}
{#if pois.length === 0}
{m["sidebar.nearby-poi.no-poi"]()}
{/if} {#each pois as poi (poi.id)}
{ pin.dropPin( poi.lat ?? poi.center?.lat ?? 0.0, poi.lon ?? poi.center?.lon ?? 0.0, ); pin.showInfo(); map.value?.flyTo({ center: [ poi.lon ?? poi.center?.lon ?? 0.0, poi.lat ?? poi.center?.lat ?? 0.0, ], zoom: 19, }); }} >
{poi.tags.name ?? poi.tags.brand ?? m.unnamed()}
{#if poi.tags.amenity}
{poi.tags.amenity}
{/if}
{Math.round( distanceTo( poi.lat ?? poi.center?.lat ?? 0.0, poi.lon ?? poi.center?.lon ?? 0.0, ), )}m
{/each}
{/if}