3 // https://github.com/geocoders/geocodejson-spec/
 
   5 $aFilteredPlaces = array();
 
   9         $aFilteredPlaces['error'] = $sError;
 
  10     else $aFilteredPlaces['error'] = 'Unable to geocode';
 
  11     javascript_renderData($aFilteredPlaces);
 
  13     $aFilteredPlaces = array(
 
  15                         'properties' => array(
 
  16                                          'geocoding' => array()
 
  20     if (isset($aPlace['place_id'])) $aFilteredPlaces['properties']['geocoding']['place_id'] = $aPlace['place_id'];
 
  21     $sOSMType = formatOSMType($aPlace['osm_type']);
 
  23         $aFilteredPlaces['properties']['geocoding']['osm_type'] = $sOSMType;
 
  24         $aFilteredPlaces['properties']['geocoding']['osm_id'] = $aPlace['osm_id'];
 
  27     $aFilteredPlaces['properties']['geocoding']['type'] = $aPlace['type'];
 
  29     $aFilteredPlaces['properties']['geocoding']['accuracy'] = (int) $fDistance;
 
  31     $aFilteredPlaces['properties']['geocoding']['label'] = $aPlace['langaddress'];
 
  33     $aFilteredPlaces['properties']['geocoding']['name'] = $aPlace['placename'];
 
  35     if (isset($aPlace['address'])) {
 
  36         $aFieldMappings = array(
 
  37                            'house_number' => 'housenumber',
 
  39                            'locality' => 'locality',
 
  40                            'postcode' => 'postcode',
 
  42                            'district' => 'district',
 
  45                            'country' => 'country'
 
  48         $aAddressNames = $aPlace['address']->getAddressNames();
 
  49         foreach ($aFieldMappings as $sFrom => $sTo) {
 
  50             if (isset($aAddressNames[$sFrom])) {
 
  51                 $aFilteredPlaces['properties']['geocoding'][$sTo] = $aAddressNames[$sFrom];
 
  55         $aFilteredPlaces['properties']['geocoding']['admin']
 
  56             = $aPlace['address']->getAdminLevels();
 
  59     if (isset($aPlace['asgeojson'])) {
 
  60         $aFilteredPlaces['geometry'] = json_decode($aPlace['asgeojson']);
 
  62         $aFilteredPlaces['geometry'] = array(
 
  64                                         'coordinates' => array(
 
  65                                                           (float) $aPlace['lon'],
 
  66                                                           (float) $aPlace['lat']
 
  71     javascript_renderData(array(
 
  72                            'type' => 'FeatureCollection',
 
  75                                            'attribution' => 'Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright',
 
  79                            'features' => array($aFilteredPlaces)