X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/effd8e12af440586594a18a04beb33abed260d15..a8a700e16d286971c43c013b322a1fd4a339de4d:/lib/template/search-xml.php diff --git a/lib/template/search-xml.php b/lib/template/search-xml.php index 80091b0a..80414fce 100644 --- a/lib/template/search-xml.php +++ b/lib/template/search-xml.php @@ -10,16 +10,13 @@ echo (isset($sXmlRootTag)?$sXmlRootTag:'searchresults'); echo " timestamp='".date(DATE_RFC822)."'"; echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'"; echo " querystring='".htmlspecialchars($sQuery, ENT_QUOTES)."'"; -if ($sViewBox) echo " viewbox='".htmlspecialchars($sViewBox, ENT_QUOTES)."'"; -echo " polygon='".($bShowPolygons?'true':'false')."'"; -if (sizeof($aExcludePlaceIDs)) +if (isset($aMoreParams['viewbox'])) echo " viewbox='".htmlspecialchars($aMoreParams['viewbox'], ENT_QUOTES)."'"; +echo " polygon='".(isset($aMoreParams['polygon'])?'true':'false')."'"; +if (isset($aMoreParams['exclude_place_ids'])) { - echo " exclude_place_ids='".htmlspecialchars(join(',',$aExcludePlaceIDs))."'"; -} -if ($sMoreURL) -{ - echo " more_url='".htmlspecialchars($sMoreURL)."'"; + echo " exclude_place_ids='".htmlspecialchars($aMoreParams['exclude_place_ids'])."'"; } +echo " more_url='".htmlspecialchars($sMoreURL)."'"; echo ">\n"; foreach($aSearchResults as $iResNum => $aResult) @@ -39,7 +36,7 @@ foreach($aSearchResults as $iResNum => $aResult) echo join(',',$aResult['aBoundingBox']); echo '"'; - if ($bShowPolygons && isset($aResult['aPolyPoints'])) + if (isset($aResult['aPolyPoints'])) { echo ' polygonpoints=\''; echo json_encode($aResult['aPolyPoints']);