2         header("content-type: text/xml; charset=UTF-8");
 
   3         header("Access-Control-Allow-Origin: *");
 
   6         echo "?xml version=\"1.0\" encoding=\"UTF-8\" ?";
 
  10         echo " timestamp='".date(DATE_RFC822)."'";
 
  11         echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'";
 
  12         echo " querystring='".htmlspecialchars($sQuery, ENT_QUOTES)."'";
 
  13         if (isset($sViewBox)) echo " viewbox='".htmlspecialchars($sViewBox, ENT_QUOTES)."'";
 
  14         echo " polygon='".($bShowPolygons?'true':'false')."'";
 
  15         if (sizeof($aExcludePlaceIDs))
 
  17                 echo " exclude_place_ids='".htmlspecialchars(join(',',$aExcludePlaceIDs))."'";
 
  21                 echo " more_url='".htmlspecialchars($sMoreURL)."'";
 
  25         foreach($aSearchResults as $iResNum => $aResult)
 
  27                 echo "<place place_id='".$aResult['place_id']."'";
 
  28                 $sOSMType = ($aResult['osm_type'] == 'N'?'node':($aResult['osm_type'] == 'W'?'way':($aResult['osm_type'] == 'R'?'relation':'')));
 
  31                         echo " osm_type='$sOSMType'";
 
  32                         echo " osm_id='".$aResult['osm_id']."'";
 
  34                 echo " place_rank='".$aResult['rank_search']."'";
 
  36                 if (isset($aResult['aBoundingBox']))
 
  38                         echo ' boundingbox="';
 
  39                         echo $aResult['aBoundingBox'][0];
 
  40                         echo ','.$aResult['aBoundingBox'][1];
 
  41                         echo ','.$aResult['aBoundingBox'][2];
 
  42                         echo ','.$aResult['aBoundingBox'][3];
 
  45                         if ($bShowPolygons && isset($aResult['aPolyPoints']))
 
  47                                 echo ' polygonpoints=\'';
 
  48                                 echo json_encode($aResult['aPolyPoints']);
 
  53                 if (isset($aResult['zoom']))
 
  55                         echo " zoom='".$aResult['zoom']."'";
 
  58                 echo " lat='".$aResult['lat']."'";
 
  59                 echo " lon='".$aResult['lon']."'";
 
  60                 echo " display_name='".htmlspecialchars($aResult['name'], ENT_QUOTES)."'";
 
  62                 echo " class='".htmlspecialchars($aResult['class'])."'";
 
  63                 echo " type='".htmlspecialchars($aResult['type'])."'";
 
  64                 if (isset($aResult['icon']) && $aResult['icon'])
 
  66                         echo " icon='".htmlspecialchars($aResult['icon'], ENT_QUOTES)."'";
 
  69                 if (isset($aResult['address']))
 
  72                         foreach($aResult['address'] as $sKey => $sValue)
 
  74                                 $sKey = str_replace(' ','_',$sKey);
 
  76                                 echo htmlspecialchars($sValue);
 
  88         echo "</searchresults>";