]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-jsonv2.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib / template / search-jsonv2.php
index e1552a155ad53ec489791c78a9daa2927820be62..1c2a04dd84028df86bfa3126ef3b2d647a7863a8 100644 (file)
                        $aPlace['address'] = $aPointDetails['address'];
                 }
 
                        $aPlace['address'] = $aPointDetails['address'];
                 }
 
-                if (isset($aResult['asgeojson']))
+                if (isset($aPointDetails['asgeojson']))
                 {
                 {
-                       $aPlace['geojson'] = json_decode($aResult['asgeojson']);
+                       $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
                 }
 
                 }
 
-                if (isset($aResult['assvg']))
+                if (isset($aPointDetails['assvg']))
                 {
                 {
-                       $aPlace['svg'] = $aResult['assvg'];
+                       $aPlace['svg'] = $aPointDetails['assvg'];
                 }
 
                 }
 
-                if (isset($aResult['astext']))
+                if (isset($aPointDetails['astext']))
                 {
                 {
-                        $aPlace['geotext'] = $aResult['astext'];
+                        $aPlace['geotext'] = $aPointDetails['astext'];
                 }
 
                 }
 
-                if (isset($aResult['askml']))
+                if (isset($aPointDetails['askml']))
                 {
                 {
-                        $aPlace['geokml'] = $aResult['askml'];
+                        $aPlace['geokml'] = $aPointDetails['askml'];
                 }
 
                $aFilteredPlaces[] = $aPlace;
                 }
 
                $aFilteredPlaces[] = $aPlace;