X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b86d5c6a42624708af4e57121caf5cc02241544f..dbb1f5c0e20ea2d915da4638b74d6579801c4586:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index fcd90b85..39d9a147 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -1,6 +1,5 @@ ".htmlspecialchars($aPlace['langaddress']).""; - if ($bShowAddressDetails) { + if (isset($aPlace['aAddress'])) + { echo ""; - foreach($aAddress as $sKey => $sValue) + foreach($aPlace['aAddress'] as $sKey => $sValue) { $sKey = str_replace(' ','_',$sKey); echo "<$sKey>"; @@ -39,7 +40,29 @@ echo ""; } echo ""; - } + } + + if (isset($aPlace['sExtraTags'])) + { + echo ""; + foreach ($aPlace['sExtraTags'] as $sKey => $sValue) + { + echo ''; + } + echo ""; + } + + if (isset($aPlace['sNameDetails'])) + { + echo ""; + foreach ($aPlace['sNameDetails'] as $sKey => $sValue) + { + echo ''; + echo htmlspecialchars($sValue); + echo ""; + } + echo ""; + } } - + echo "";