X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/9c0ca064b833ad39eac8ffc2447331d732d1a7d0..73fdf5fae2755ba8c0170ff4b7ebce0aab5c08a4:/lib/template/search-json.php diff --git a/lib/template/search-json.php b/lib/template/search-json.php index dd75ad87..45272d35 100644 --- a/lib/template/search-json.php +++ b/lib/template/search-json.php @@ -39,7 +39,7 @@ $aPlace['class'] = $aPointDetails['class']; $aPlace['type'] = $aPointDetails['type']; - if ($aPointDetails['icon']) + if (isset($aPointDetails['icon']) && $aPointDetails['icon']) { $aPlace['icon'] = $aPointDetails['icon']; } @@ -49,6 +49,26 @@ $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; }