X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c3233cb9512105d65442a40260cf16d8688d76a5..21c590416854b1245866b96772fde61050c0e01a:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index 450f8fb5..39d9a147 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -1,6 +1,5 @@ \n"; if (!sizeof($aPlace)) { - if ($sError) + if (isset($sError)) echo "$sError"; else echo "Unable to geocode"; @@ -23,15 +22,17 @@ { echo "".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 "";