2012-03-04 19:41:43 +04:00
|
|
|
<?php
|
2016-09-04 04:19:48 +03:00
|
|
|
|
|
|
|
$aFilteredPlaces = array();
|
|
|
|
|
2018-03-22 14:36:24 +03:00
|
|
|
if (empty($aPlace)) {
|
2016-09-04 04:19:48 +03:00
|
|
|
if (isset($sError))
|
|
|
|
$aFilteredPlaces['error'] = $sError;
|
2018-02-23 03:16:01 +03:00
|
|
|
else $aFilteredPlaces['error'] = 'Unable to geocode';
|
|
|
|
} else {
|
2016-09-04 04:19:48 +03:00
|
|
|
if (isset($aPlace['place_id'])) $aFilteredPlaces['place_id'] = $aPlace['place_id'];
|
2018-02-23 03:16:01 +03:00
|
|
|
$aFilteredPlaces['licence'] = 'Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright';
|
2016-09-04 04:19:48 +03:00
|
|
|
$sOSMType = formatOSMType($aPlace['osm_type']);
|
2018-02-23 03:16:01 +03:00
|
|
|
if ($sOSMType) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['osm_type'] = $sOSMType;
|
|
|
|
$aFilteredPlaces['osm_id'] = $aPlace['osm_id'];
|
|
|
|
}
|
|
|
|
if (isset($aPlace['lat'])) $aFilteredPlaces['lat'] = $aPlace['lat'];
|
|
|
|
if (isset($aPlace['lon'])) $aFilteredPlaces['lon'] = $aPlace['lon'];
|
2018-03-10 03:30:22 +03:00
|
|
|
|
2018-03-18 03:49:26 +03:00
|
|
|
if ($sOutputFormat == 'jsonv2' || $sOutputFormat == 'geojson') {
|
2018-03-10 03:30:22 +03:00
|
|
|
$aFilteredPlaces['place_rank'] = $aPlace['rank_search'];
|
|
|
|
|
|
|
|
$aFilteredPlaces['category'] = $aPlace['class'];
|
|
|
|
$aFilteredPlaces['type'] = $aPlace['type'];
|
|
|
|
|
|
|
|
$aFilteredPlaces['importance'] = $aPlace['importance'];
|
|
|
|
|
|
|
|
$aFilteredPlaces['addresstype'] = strtolower($aPlace['addresstype']);
|
|
|
|
|
|
|
|
$aFilteredPlaces['name'] = $aPlace['placename'];
|
|
|
|
}
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['display_name'] = $aPlace['langaddress'];
|
2018-03-10 03:30:22 +03:00
|
|
|
|
2018-07-11 00:38:27 +03:00
|
|
|
if (isset($aPlace['address'])) {
|
|
|
|
$aFilteredPlaces['address'] = $aPlace['address']->getAddressNames();
|
|
|
|
}
|
2016-09-04 04:19:48 +03:00
|
|
|
if (isset($aPlace['sExtraTags'])) $aFilteredPlaces['extratags'] = $aPlace['sExtraTags'];
|
|
|
|
if (isset($aPlace['sNameDetails'])) $aFilteredPlaces['namedetails'] = $aPlace['sNameDetails'];
|
|
|
|
|
2018-02-23 03:16:01 +03:00
|
|
|
if (isset($aPlace['aBoundingBox'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['boundingbox'] = $aPlace['aBoundingBox'];
|
|
|
|
}
|
|
|
|
|
2018-02-23 03:16:01 +03:00
|
|
|
if (isset($aPlace['asgeojson'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['geojson'] = json_decode($aPlace['asgeojson']);
|
|
|
|
}
|
|
|
|
|
2018-02-23 03:16:01 +03:00
|
|
|
if (isset($aPlace['assvg'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['svg'] = $aPlace['assvg'];
|
|
|
|
}
|
|
|
|
|
2018-02-23 03:16:01 +03:00
|
|
|
if (isset($aPlace['astext'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['geotext'] = $aPlace['astext'];
|
|
|
|
}
|
|
|
|
|
2018-02-23 03:16:01 +03:00
|
|
|
if (isset($aPlace['askml'])) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$aFilteredPlaces['geokml'] = $aPlace['askml'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
javascript_renderData($aFilteredPlaces);
|