X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fa1f23edfbd0672ae430722152314ecc69615b56..50f17666fa0200c5b1131b784347867f61f0f8aa:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index fcd90b85..109e66a1 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 +74,37 @@ 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 ""; + } + + if (isset($aPlace['askml'])) + { + echo "\n"; + echo $aPlace['askml']; + echo ""; + } + } - + echo "";