X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/8d4a86635fe661717a17fe3bb7ff2cde8a784158..5f19b23f49aee9989267ac03b488049f9d681166:/lib/template/search-json.php diff --git a/lib/template/search-json.php b/lib/template/search-json.php index b997f6d9..6108aca4 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']; @@ -40,7 +45,7 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { } if (isset($aPointDetails['address'])) { - $aPlace['address'] = $aPointDetails['address']; + $aPlace['address'] = $aPointDetails['address']->getAddressNames(); } if (isset($aPointDetails['asgeojson'])) {