X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c8359181237a3b145ac48b5e58098b36674cd89f..6bd905ff4390e90f688dbc0b7e32ab8d529fcc40:/lib/template/search-json.php?ds=inline diff --git a/lib/template/search-json.php b/lib/template/search-json.php index b997f6d9..7c87f636 100644 --- a/lib/template/search-json.php +++ b/lib/template/search-json.php @@ -1,11 +1,10 @@ $aPointDetails) { $aPlace = array( 'place_id'=>$aPointDetails['place_id'], - 'licence'=>'Data © OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright', + 'licence'=>'Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright', ); $sOSMType = formatOSMType($aPointDetails['osm_type']); @@ -30,7 +29,12 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { $aPlace['lon'] = $aPointDetails['lon']; $aPlace['display_name'] = $aPointDetails['name']; - $aPlace['class'] = $aPointDetails['class']; + if ($sOutputFormat == 'jsonv2') { + $aPlace['place_rank'] = $aPointDetails['rank_search']; + $aPlace['category'] = $aPointDetails['class']; + } else { + $aPlace['class'] = $aPointDetails['class']; + } $aPlace['type'] = $aPointDetails['type']; $aPlace['importance'] = $aPointDetails['importance']; @@ -39,7 +43,7 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { $aPlace['icon'] = $aPointDetails['icon']; } - if (isset($aPointDetails['address'])) { + if (isset($aPointDetails['address']) && !empty($aPointDetails['address'])) { $aPlace['address'] = $aPointDetails['address']; }