X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/d396505786ce3be105249c740e0d3365beb4ef10..fb9a0414ffdb376422cc6ec7d519fff60255af7b:/lib/template/search-jsonv2.php diff --git a/lib/template/search-jsonv2.php b/lib/template/search-jsonv2.php index 095bfb79..2b8c2c28 100644 --- a/lib/template/search-jsonv2.php +++ b/lib/template/search-jsonv2.php @@ -4,7 +4,7 @@ { $aPlace = array( 'place_id'=>$aPointDetails['place_id'], - 'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.", + 'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright", ); $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':''))); @@ -36,6 +36,7 @@ $aPlace['lat'] = $aPointDetails['lat']; $aPlace['lon'] = $aPointDetails['lon']; $aPlace['display_name'] = $aPointDetails['name']; + $aPlace['place_rank'] = $aResult['rank_search']; $aPlace['category'] = $aPointDetails['class']; $aPlace['type'] = $aPointDetails['type']; @@ -49,7 +50,27 @@ $aPlace['address'] = $aPointDetails['address']; } + if (isset($aResult['asgeojson'])) + { + $aPlace['geojson'] = json_decode($aResult['asgeojson']); + } + + if (isset($aResult['assvg'])) + { + $aPlace['svg'] = $aResult['assvg']; + } + + if (isset($aResult['astext'])) + { + $aPlace['geotext'] = $aResult['astext']; + } + + if (isset($aResult['askml'])) + { + $aPlace['geokml'] = $aResult['askml']; + } + $aFilteredPlaces[] = $aPlace; } - javascript_renderData($aFilteredPlaces); + javascript_renderData($aFilteredPlaces, array('geojson'));