X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/db3ced17bbfff00411f506d8c84419c875959d5e..7932b1849b70abad6484afb5a9b6dfcd22c10890:/lib-php/template/search-json.php?ds=sidebyside diff --git a/lib-php/template/search-json.php b/lib-php/template/search-json.php index 4b896d08..5fb13020 100644 --- a/lib-php/template/search-json.php +++ b/lib-php/template/search-json.php @@ -1,4 +1,12 @@ $aPointDetails) { @@ -6,7 +14,7 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { 'place_id'=>$aPointDetails['place_id'], 'licence'=>'Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright', ); - + $sOSMType = formatOSMType($aPointDetails['osm_type']); if ($sOSMType) { $aPlace['osm_type'] = $sOSMType; @@ -45,7 +53,7 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { } if (isset($aPointDetails['asgeojson'])) { - $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']); + $aPlace['geojson'] = json_decode($aPointDetails['asgeojson'], true); } if (isset($aPointDetails['assvg'])) { @@ -60,8 +68,12 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { $aPlace['geokml'] = $aPointDetails['askml']; } - if (isset($aPointDetails['sExtraTags'])) $aPlace['extratags'] = $aPointDetails['sExtraTags']; - if (isset($aPointDetails['sNameDetails'])) $aPlace['namedetails'] = $aPointDetails['sNameDetails']; + if (isset($aPointDetails['sExtraTags'])) { + $aPlace['extratags'] = $aPointDetails['sExtraTags']; + } + if (isset($aPointDetails['sNameDetails'])) { + $aPlace['namedetails'] = $aPointDetails['sNameDetails']; + } $aFilteredPlaces[] = $aPlace; }