X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c8359181237a3b145ac48b5e58098b36674cd89f..e52ee350618d8cbbe2ab147bfb2cef6507d6e12e:/lib/template/search-json.php?ds=sidebyside diff --git a/lib/template/search-json.php b/lib/template/search-json.php index b997f6d9..30817c04 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']); @@ -28,9 +27,15 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { $aPlace['lat'] = $aPointDetails['lat']; $aPlace['lon'] = $aPointDetails['lon']; + $aPlace['display_name'] = $aPointDetails['name']; - $aPlace['class'] = $aPointDetails['class']; + if ($sOutputFormat == 'jsonv2' || $sOutputFormat == 'geojson') { + $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 +44,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']; }