X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/8299637b4b6b4f1d07c6c5d55c441108b8b71d84..200f60bc3a38adc7ae5e9acbbbf0565b715bdb80:/src/pages/DetailsPage.svelte diff --git a/src/pages/DetailsPage.svelte b/src/pages/DetailsPage.svelte index 2b8f4cc..a8bb120 100644 --- a/src/pages/DetailsPage.svelte +++ b/src/pages/DetailsPage.svelte @@ -56,12 +56,18 @@ function place_has_keywords(aThisPlace) { // Return false if Nominatim API sends 'keywords: { name: [], address: [] }' + // Like no longer needed after Nominatim version 4.3 return ( aThisPlace.keywords && aThisPlace.keywords.name && aThisPlace.keywords.address && (aThisPlace.keywords.name.length > 0 || aThisPlace.keywords.address.length > 0) ); } + function country_code(aThisPlace) { + let aLine = aThisPlace.address.find((address_line) => address_line.type === 'country_code'); + return aLine ? aLine.localname : null; + } + $: { let pageinfo = $page; if (pageinfo.tab === 'details') { @@ -94,10 +100,11 @@
Local name | @@ -170,7 +177,8 @@ {#each aPlace.address as addressLine}
---|
There are more child objects which are not shown. |
Place is not parent of other places |