2         $aFilteredPlaces = array();
 
   3         foreach($aSearchResults as $iResNum => $aPointDetails)
 
   6                                 'place_id'=>$aPointDetails['place_id'],
 
   7                                 'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright",
 
  10                 $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
 
  13                         $aPlace['osm_type'] = $sOSMType;
 
  14                         $aPlace['osm_id'] = $aPointDetails['osm_id'];
 
  17                 if (isset($aPointDetails['aBoundingBox']))
 
  19                         $aPlace['boundingbox'] = array(
 
  20                                 $aPointDetails['aBoundingBox'][0],
 
  21                                 $aPointDetails['aBoundingBox'][1],
 
  22                                 $aPointDetails['aBoundingBox'][2],
 
  23                                 $aPointDetails['aBoundingBox'][3]);
 
  25                         if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
 
  27                                 $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
 
  31                 if (isset($aPointDetails['zoom']))
 
  33                         $aPlace['zoom'] = $aPointDetails['zoom'];
 
  36                 $aPlace['lat'] = $aPointDetails['lat'];
 
  37                 $aPlace['lon'] = $aPointDetails['lon'];
 
  38                 $aPlace['display_name'] = $aPointDetails['name'];
 
  39                 $aPlace['place_rank'] = $aPointDetails['rank_search'];
 
  41                 $aPlace['category'] = $aPointDetails['class'];
 
  42                 $aPlace['type'] = $aPointDetails['type'];
 
  44                 $aPlace['importance'] = $aPointDetails['importance'];
 
  46                 if (isset($aPointDetails['icon']))
 
  48                         $aPlace['icon'] = $aPointDetails['icon'];
 
  51                 if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
 
  53                         $aPlace['address'] = $aPointDetails['address'];
 
  56                 if (isset($aPointDetails['asgeojson']))
 
  58                         $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
 
  61                 if (isset($aPointDetails['assvg']))
 
  63                         $aPlace['svg'] = $aPointDetails['assvg'];
 
  66                 if (isset($aPointDetails['astext']))
 
  68                         $aPlace['geotext'] = $aPointDetails['astext'];
 
  71                 if (isset($aPointDetails['askml']))
 
  73                         $aPlace['geokml'] = $aPointDetails['askml'];
 
  76                 $aFilteredPlaces[] = $aPlace;
 
  79         javascript_renderData($aFilteredPlaces, array('geojson'));