🌤️ WeatherLens
{#if app.geocodingLoading}
⏳
{/if} {#if app.geocodingResults.length > 0}
{#each app.geocodingResults as result}
handleSelectGeocoding(result)} >
{result.name}
{result.admin1 || ''}{result.country ? ', ' + result.country : ''}
{/each}
{/if}
{#each app.locations as location} {#if location.isCurrent}
app.selectLocation(location.id)} >
📍
{location.name}
{/if} {/each} {#each app.locations as location} {#if !location.isCurrent}
app.selectLocation(location.id)} >
🏙️
{location.name}
handleSetCurrent(location.id)} title="Set as current location" >📍
handleDeleteLocation(location.id)} title="Remove location" >✕
{/if} {/each} {#if app.locations.length === 0}
No saved locations.
Enable location access or add one below.
{/if}