X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/6a7e0d652b1d40a397e1c1386d500101796676c4..54d35ddfe9054f3bc49896fc47c2a02b3fc43066:/lib-php/template/search-geojson.php diff --git a/lib-php/template/search-geojson.php b/lib-php/template/search-geojson.php index 0847fba4..c0ca625c 100644 --- a/lib-php/template/search-geojson.php +++ b/lib-php/template/search-geojson.php @@ -8,7 +8,7 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { 'place_id'=>$aPointDetails['place_id'], ) ); - + $sOSMType = formatOSMType($aPointDetails['osm_type']); if ($sOSMType) { $aPlace['properties']['osm_type'] = $sOSMType; @@ -58,8 +58,12 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { } - if (isset($aPointDetails['sExtraTags'])) $aPlace['properties']['extratags'] = $aPointDetails['sExtraTags']; - if (isset($aPointDetails['sNameDetails'])) $aPlace['properties']['namedetails'] = $aPointDetails['sNameDetails']; + if (isset($aPointDetails['sExtraTags'])) { + $aPlace['properties']['extratags'] = $aPointDetails['sExtraTags']; + } + if (isset($aPointDetails['sNameDetails'])) { + $aPlace['properties']['namedetails'] = $aPointDetails['sNameDetails']; + } $aFilteredPlaces[] = $aPlace; }