2023-11-30 00:39:55 +01:00
|
|
|
<script lang="ts">
|
|
|
|
|
2023-12-02 03:19:50 +01:00
|
|
|
import type { SpecialVisualizationState } from "../SpecialVisualization";
|
|
|
|
import TagRenderingAnswer from "../Popup/TagRendering/TagRenderingAnswer.svelte";
|
|
|
|
import type { Feature } from "geojson";
|
|
|
|
import { ImmutableStore } from "../../Logic/UIEventSource";
|
|
|
|
import { GeoOperations } from "../../Logic/GeoOperations";
|
|
|
|
import Center from "../../assets/svg/Center.svelte";
|
|
|
|
|
|
|
|
export let feature: Feature;
|
|
|
|
let properties: Record<string, string> = feature.properties;
|
|
|
|
export let state: SpecialVisualizationState;
|
|
|
|
let tags = state.featureProperties.getStore(properties.id) ?? new ImmutableStore(properties);
|
|
|
|
|
|
|
|
const favLayer = state.layerState.filteredLayers.get("favourite");
|
|
|
|
const favConfig = favLayer.layerDef;
|
|
|
|
const titleConfig = favConfig.title;
|
|
|
|
|
|
|
|
function center(){
|
|
|
|
const [lon, lat] = GeoOperations.centerpointCoordinates(feature)
|
|
|
|
state.mapProperties.location.setData(
|
|
|
|
{lon, lat}
|
|
|
|
)
|
|
|
|
state.guistate.menuIsOpened.setData(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
function select(){
|
|
|
|
state.selectedLayer.setData(favConfig)
|
|
|
|
state.selectedElement.setData(feature)
|
|
|
|
center()
|
|
|
|
}
|
|
|
|
|
|
|
|
const titleIconBlacklist = ["osmlink","sharelink","favourite_title_icon"]
|
|
|
|
|
2023-11-30 00:39:55 +01:00
|
|
|
</script>
|
|
|
|
|
2023-12-02 03:19:50 +01:00
|
|
|
<div class="px-1 my-1 border-2 border-dashed border-gray-300 rounded flex justify-between items-center">
|
|
|
|
<h3 on:click={() => select()} class="cursor-pointer ml-1 m-0">
|
|
|
|
<TagRenderingAnswer config={titleConfig} layer={favConfig} selectedElement={feature} {tags} />
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
{#each favConfig.titleIcons as titleIconConfig}
|
|
|
|
{#if (titleIconBlacklist.indexOf(titleIconConfig.id) < 0) && (titleIconConfig.condition?.matchesProperties(properties) ?? true) && (titleIconConfig.metacondition?.matchesProperties( { ...properties, ...state.userRelatedState.preferencesAsTags.data } ) ?? true) && titleIconConfig.IsKnown(properties)}
|
|
|
|
<div class={titleIconConfig.renderIconClass ?? "flex h-8 w-8 items-center"}>
|
|
|
|
<TagRenderingAnswer
|
|
|
|
config={titleIconConfig}
|
|
|
|
{tags}
|
|
|
|
selectedElement={feature}
|
|
|
|
{state}
|
|
|
|
layer={favLayer}
|
|
|
|
extraClasses="h-full justify-center"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{/each}
|
|
|
|
<button on:click={() => center()} class="p-1" ><Center class="w-6 h-6"/></button>
|
|
|
|
</div>
|
2023-11-30 00:39:55 +01:00
|
|
|
</div>
|