]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-jsonv2.php
change tiger housenumber format to save as lines instead of points and thus new inter...
[nominatim.git] / lib / template / search-jsonv2.php
index 126f78662df64970a3acc6c120599637fdaf975d..66098d303e69272826030bee08a0f6b30a47156d 100644 (file)
@@ -14,8 +14,8 @@
                        $aPlace['osm_id'] = $aPointDetails['osm_id'];
                }
 
-                if (isset($aPointDetails['aBoundingBox']))
-                {
+               if (isset($aPointDetails['aBoundingBox']))
+               {
                        $aPlace['boundingbox'] = array(
                                $aPointDetails['aBoundingBox'][0],
                                $aPointDetails['aBoundingBox'][1],
@@ -26,7 +26,7 @@
                        {
                                $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
                        }
-                }
+               }
 
                if (isset($aPointDetails['zoom']))
                {
                if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
                {
                        $aPlace['address'] = $aPointDetails['address'];
-                }
+               }
 
-                if (isset($aPointDetails['asgeojson']))
-                {
+               if (isset($aPointDetails['asgeojson']))
+               {
                        $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
-                }
+               }
 
-                if (isset($aPointDetails['assvg']))
-                {
+               if (isset($aPointDetails['assvg']))
+               {
                        $aPlace['svg'] = $aPointDetails['assvg'];
-                }
+               }
+
+               if (isset($aPointDetails['astext']))
+               {
+                       $aPlace['geotext'] = $aPointDetails['astext'];
+               }
 
-                if (isset($aPointDetails['astext']))
-                {
-                        $aPlace['geotext'] = $aPointDetails['astext'];
-                }
+               if (isset($aPointDetails['askml']))
+               {
+                       $aPlace['geokml'] = $aPointDetails['askml'];
+               }
 
-                if (isset($aPointDetails['askml']))
-                {
-                        $aPlace['geokml'] = $aPointDetails['askml'];
-                }
+               if (isset($aPointDetails['sExtraTags'])) $aPlace['extratags'] = $aPointDetails['sExtraTags'];
+               if (isset($aPointDetails['sNameDetails'])) $aPlace['namedetails'] = $aPointDetails['sNameDetails'];
 
                $aFilteredPlaces[] = $aPlace;
        }
 
-       javascript_renderData($aFilteredPlaces, array('geojson'));
+       javascript_renderData($aFilteredPlaces);