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 if ($aPlace['placename'] !== null) {
34 $aFilteredPlaces['properties']['geocoding']['name'] = $aPlace['placename'];
37 if (isset($aPlace['address'])) {
38 $aPlace['address']->addGeocodeJsonAddressParts(
39 $aFilteredPlaces['properties']['geocoding']
42 $aFilteredPlaces['properties']['geocoding']['admin']
43 = $aPlace['address']->getAdminLevels();
46 if (isset($aPlace['asgeojson'])) {
47 $aFilteredPlaces['geometry'] = json_decode($aPlace['asgeojson']);
49 $aFilteredPlaces['geometry'] = array(
51 'coordinates' => array(
52 (float) $aPlace['lon'],
53 (float) $aPlace['lat']
58 javascript_renderData(array(
59 'type' => 'FeatureCollection',
62 'attribution' => 'Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright',
66 'features' => array($aFilteredPlaces)