X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b7abc8566ed5b67ddbbfed7e10701b4838008f6b..33de9096af645f6783bf3f18e1b389d39e586e2b:/lib/template/search-xml.php diff --git a/lib/template/search-xml.php b/lib/template/search-xml.php index f67ba33b..68d985f3 100644 --- a/lib/template/search-xml.php +++ b/lib/template/search-xml.php @@ -11,7 +11,6 @@ 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 (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($aMoreParams['exclude_place_ids'])."'"; } @@ -31,12 +30,6 @@ foreach ($aSearchResults as $iResNum => $aResult) { echo ' boundingbox="'; echo join(',', $aResult['aBoundingBox']); echo '"'; - - if (isset($aResult['aPolyPoints'])) { - echo ' polygonpoints=\''; - echo json_encode($aResult['aPolyPoints']); - echo '\''; - } } if (isset($aResult['asgeojson'])) {