X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e598e2ceed58f03942f12203611ccc2e20fec66d..92095c9247ebfeb08ea1bcaebbae66ee406ce426:/lib/template/search-xml.php diff --git a/lib/template/search-xml.php b/lib/template/search-xml.php index f8e054e3..7cbcc04b 100644 --- a/lib/template/search-xml.php +++ b/lib/template/search-xml.php @@ -1,16 +1,16 @@ \n"; - echo " $aResult) { echo ""; + } + echo "\n"; + echo $aResult['askml']; + echo ""; + } + + if (isset($aResult['sExtraTags'])) + { + if (!$bHasDelim) + { + $bHasDelim = true; + echo ">"; + } + echo "\n"; + foreach ($aResult['sExtraTags'] as $sKey => $sValue) + { + echo ''; + } + echo ""; + } + + if (isset($aResult['sNameDetails'])) + { + if (!$bHasDelim) + { + $bHasDelim = true; + echo ">"; + } + echo "\n"; + foreach ($aResult['sNameDetails'] as $sKey => $sValue) + { + echo ''; + echo htmlspecialchars($sValue); + echo ""; + } + echo ""; + } + if (isset($aResult['address'])) { - echo ">"; + if (!$bHasDelim) + { + $bHasDelim = true; + echo ">"; + } + echo "\n"; foreach($aResult['address'] as $sKey => $sValue) { $sKey = str_replace(' ','_',$sKey); @@ -76,7 +147,10 @@ echo htmlspecialchars($sValue); echo ""; } + } + if ($bHasDelim) + { echo ""; } else @@ -85,4 +159,4 @@ } } - echo ""; + echo "";