X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/349f05287a5b6fbb19f4c1638cc1d75ab258fb66..161644ac1e2a9ec708e72bc5f33b61657488be2b:/src/pages/DetailsPage.svelte diff --git a/src/pages/DetailsPage.svelte b/src/pages/DetailsPage.svelte index 500c5c3..18b1592 100644 --- a/src/pages/DetailsPage.svelte +++ b/src/pages/DetailsPage.svelte @@ -4,13 +4,14 @@ import { osmLink, wikipediaLink, coverageType, isAdminBoundary, - formatAddressRank, formatKeywordToken + formatAddressRank, formatKeywordToken, formatOSMType } from '../lib/helpers.js'; import Header from '../components/Header.svelte'; import MapIcon from '../components/MapIcon.svelte'; import SearchSectionDetails from '../components/SearchSectionDetails.svelte'; import DetailsOneRow from '../components/DetailsOneRow.svelte'; import DetailsLink from '../components/DetailsLink.svelte'; + import DetailsPostcodeHint from '../components/DetailsPostcodeHint.svelte'; import InfoRow from '../components/DetailsInfoRow.svelte'; import InfoRowList from '../components/DetailsInfoRowList.svelte'; import Map from '../components/Map.svelte'; @@ -53,6 +54,14 @@ } } + function place_has_keywords(aThisPlace) { + // Return false if Nominatim API sends 'keywords: { name: [], address: [] }' + return ( + aThisPlace.keywords && aThisPlace.keywords.name && aThisPlace.keywords.address + && (aThisPlace.keywords.name.length > 0 || aThisPlace.keywords.address.length > 0) + ); + } + $: { let pageinfo = $page; if (pageinfo.tab === 'details') { @@ -60,6 +69,7 @@ base_url = window.location.search; } } + $: reverse_only = Nominatim_Config.Reverse_Only;
@@ -71,11 +81,11 @@

- {aPlace.localname} + {aPlace.localname || `${formatOSMType(aPlace.osm_type)} ${aPlace.osm_id}` } link to this page

-
+
@@ -83,7 +93,13 @@
- + + {#if (Array.isArray(aPlace.names)) } + No Name + {:else} + + {/if} + {aPlace.category}:{aPlace.type}{aPlace.indexed_date} {#if (isAdminBoundary(aPlace)) } @@ -109,7 +125,12 @@ {#if aPlace.calculated_wikipedia} {@html wikipediaLink(aPlace)} {/if} - {aPlace.calculated_postcode || ''} + + {#if aPlace.calculated_postcode} + {aPlace.calculated_postcode} + + {/if} + @@ -144,56 +165,66 @@ {/if} {#if aPlace.linked_places} - + {#each aPlace.linked_places as addressLine} {/each} {/if} - - {#if aPlace.keywords} - - {#each aPlace.keywords.name as keyword} - - - {#if keyword.id} - + {#if !reverse_only} + + {#if api_request_params.keywords} + + {#if place_has_keywords(aPlace)} + + {#each aPlace.keywords.name as keyword} + + + {#if keyword.id} + + {/if} + + {/each} + + {#if aPlace.keywords.address} + + {#each aPlace.keywords.address as keyword} + + + {#if keyword.id} + + {/if} + + {/each} {/if} + {:else} + + {/if} + {:else} + + - {/each} - - {#if aPlace.keywords.address} - - {#each aPlace.keywords.address as keyword} - - - {#if keyword.id} - - {/if} - - {/each} {/if} - {:else} - - - {/if} - - {#if aPlace.hierarchy} - - {#each Object.keys(aPlace.hierarchy) as type} - - {#each aPlace.hierarchy[type] as line} - - {/each} - {/each} + + {#if api_request_params.hierarchy} + {#if aPlace.hierarchy && typeof (aPlace.hierarchy) === 'object' && Object.keys(aPlace.hierarchy).length} + {#each Object.keys(aPlace.hierarchy) as type} + + {#each aPlace.hierarchy[type] as line} + + {/each} + {/each} - {#if Object.keys(aPlace.hierarchy) > 500} -

There are more child objects which are not shown.

+ {#if Object.keys(aPlace.hierarchy) > 500} +

There are more child objects which are not shown.

+ {/if} + {:else} +
{/if} {:else} @@ -243,6 +274,9 @@ border-top: none !important; padding-left: 0 !important; } + :global(span.noname){ + color:#800; + } #map-wrapper { width:100%;

Linked Places

Linked Places

Keywords

Name Keywords

{formatKeywordToken(keyword.token)}word id: {keyword.id}

Keywords

Name Keywords

{formatKeywordToken(keyword.token)}word id: {keyword.id}

Address Keywords

{formatKeywordToken(keyword.token)}word id: {keyword.id}
Place has no keywords
+ display keywords +

Address Keywords

{formatKeywordToken(keyword.token)}word id: {keyword.id}
- display keywords -

Parent Of

{type}

Parent Of

{type}

Place is not parent of other places