2023-09-16 02:30:01 +02:00
|
|
|
<script lang="ts">
|
2024-01-11 15:22:45 +01:00
|
|
|
import { UIEventSource } from "../../Logic/UIEventSource"
|
2023-12-19 22:08:00 +01:00
|
|
|
import type { OsmTags } from "../../Models/OsmFeature"
|
|
|
|
import type { SpecialVisualizationState } from "../SpecialVisualization"
|
|
|
|
import type { Feature } from "geojson"
|
|
|
|
import LayerConfig from "../../Models/ThemeConfig/LayerConfig"
|
|
|
|
import Translations from "../i18n/Translations"
|
|
|
|
import Tr from "../Base/Tr.svelte"
|
|
|
|
import NearbyImages from "./NearbyImages.svelte"
|
|
|
|
import { XCircleIcon } from "@babeard/svelte-heroicons/solid"
|
|
|
|
import Camera_plus from "../../assets/svg/Camera_plus.svelte"
|
|
|
|
import LoginToggle from "../Base/LoginToggle.svelte"
|
2023-12-15 01:46:01 +01:00
|
|
|
import { ariaLabel } from "../../Utils/ariaLabel"
|
2024-09-12 01:31:00 +02:00
|
|
|
import { Accordion, AccordionItem, Modal } from "flowbite-svelte"
|
2024-06-18 03:33:11 +02:00
|
|
|
import AccordionSingle from "../Flowbite/AccordionSingle.svelte"
|
2024-09-12 01:31:00 +02:00
|
|
|
import Popup from "../Base/Popup.svelte"
|
2023-09-16 02:30:01 +02:00
|
|
|
|
2024-01-11 15:22:45 +01:00
|
|
|
export let tags: UIEventSource<OsmTags>
|
2023-12-19 22:08:00 +01:00
|
|
|
export let state: SpecialVisualizationState
|
|
|
|
export let lon: number
|
|
|
|
export let lat: number
|
|
|
|
export let feature: Feature
|
2023-09-16 02:30:01 +02:00
|
|
|
|
2023-12-19 22:08:00 +01:00
|
|
|
export let linkable: boolean = true
|
|
|
|
export let layer: LayerConfig
|
|
|
|
const t = Translations.t.image.nearby
|
2023-09-16 02:30:01 +02:00
|
|
|
|
2024-06-23 02:54:53 +02:00
|
|
|
let enableLogin = state.featureSwitches.featureSwitchEnableLogin
|
2024-09-12 01:31:00 +02:00
|
|
|
export let shown = new UIEventSource(false)
|
2023-09-16 02:30:01 +02:00
|
|
|
</script>
|
2023-12-06 17:27:30 +01:00
|
|
|
|
2024-06-23 02:54:53 +02:00
|
|
|
{#if enableLogin.data}
|
2024-09-12 01:31:00 +02:00
|
|
|
<button on:click={() => {shown.set(!shown.data)}}><Tr t={t.seeNearby}/> </button>
|
|
|
|
<Popup {shown} bodyPadding="p-4">
|
|
|
|
<span slot="header">
|
2024-06-24 13:11:35 +02:00
|
|
|
<Tr t={t.seeNearby} />
|
|
|
|
</span>
|
|
|
|
<NearbyImages {tags} {state} {lon} {lat} {feature} {linkable} {layer} />
|
2024-09-12 01:31:00 +02:00
|
|
|
</Popup>
|
2024-06-24 13:11:35 +02:00
|
|
|
{/if}
|