X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/88beeb79164d0fec40778678e5d93ae44b8f07d8..e52ee350618d8cbbe2ab147bfb2cef6507d6e12e:/lib/template/address-json.php diff --git a/lib/template/address-json.php b/lib/template/address-json.php index 85f6fe8e..b620c63e 100644 --- a/lib/template/address-json.php +++ b/lib/template/address-json.php @@ -2,7 +2,7 @@ $aFilteredPlaces = array(); -if (!sizeof($aPlace)) { +if (empty($aPlace)) { if (isset($sError)) $aFilteredPlaces['error'] = $sError; else $aFilteredPlaces['error'] = 'Unable to geocode'; @@ -17,7 +17,7 @@ if (!sizeof($aPlace)) { if (isset($aPlace['lat'])) $aFilteredPlaces['lat'] = $aPlace['lat']; if (isset($aPlace['lon'])) $aFilteredPlaces['lon'] = $aPlace['lon']; - if ($sOutputFormat == 'jsonv2') { + if ($sOutputFormat == 'jsonv2' || $sOutputFormat == 'geojson') { $aFilteredPlaces['place_rank'] = $aPlace['rank_search']; $aFilteredPlaces['category'] = $aPlace['class'];