Nominatim/lib/template/search-jsonv2.php

79 lines
2.0 KiB
PHP
Raw Normal View History

2012-03-04 19:41:43 +04:00
<?php
$aFilteredPlaces = array();
foreach($aSearchResults as $iResNum => $aPointDetails)
{
$aPlace = array(
'place_id'=>$aPointDetails['place_id'],
2012-09-12 21:14:28 +04:00
'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright",
2012-03-04 19:41:43 +04:00
);
$sOSMType = formatOSMType($aPointDetails['osm_type']);
2012-03-04 19:41:43 +04:00
if ($sOSMType)
{
$aPlace['osm_type'] = $sOSMType;
$aPlace['osm_id'] = $aPointDetails['osm_id'];
}
2016-02-27 02:02:20 +03:00
if (isset($aPointDetails['aBoundingBox']))
{
2016-03-04 22:29:09 +03:00
$aPlace['boundingbox'] = $aPointDetails['aBoundingBox'];
2012-03-04 19:41:43 +04:00
if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
{
$aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
}
2016-02-27 02:02:20 +03:00
}
2012-03-04 19:41:43 +04:00
if (isset($aPointDetails['zoom']))
{
$aPlace['zoom'] = $aPointDetails['zoom'];
}
$aPlace['lat'] = $aPointDetails['lat'];
$aPlace['lon'] = $aPointDetails['lon'];
$aPlace['display_name'] = $aPointDetails['name'];
2012-12-05 19:34:27 +04:00
$aPlace['place_rank'] = $aPointDetails['rank_search'];
2012-03-04 19:41:43 +04:00
$aPlace['category'] = $aPointDetails['class'];
$aPlace['type'] = $aPointDetails['type'];
$aPlace['importance'] = $aPointDetails['importance'];
2012-12-09 12:35:34 +04:00
if (isset($aPointDetails['icon']))
2012-03-04 19:41:43 +04:00
{
$aPlace['icon'] = $aPointDetails['icon'];
}
if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
2012-03-04 19:41:43 +04:00
{
$aPlace['address'] = $aPointDetails['address'];
2016-02-27 02:02:20 +03:00
}
2012-03-04 19:41:43 +04:00
2016-02-27 02:02:20 +03:00
if (isset($aPointDetails['asgeojson']))
{
2012-12-20 05:28:10 +04:00
$aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
2016-02-27 02:02:20 +03:00
}
2016-02-27 02:02:20 +03:00
if (isset($aPointDetails['assvg']))
{
2012-12-20 05:28:10 +04:00
$aPlace['svg'] = $aPointDetails['assvg'];
2016-02-27 02:02:20 +03:00
}
2016-02-27 02:02:20 +03:00
if (isset($aPointDetails['astext']))
{
$aPlace['geotext'] = $aPointDetails['astext'];
}
2016-02-27 02:02:20 +03:00
if (isset($aPointDetails['askml']))
{
$aPlace['geokml'] = $aPointDetails['askml'];
}
if (isset($aPointDetails['sExtraTags'])) $aPlace['extratags'] = $aPointDetails['sExtraTags'];
if (isset($aPointDetails['sNameDetails'])) $aPlace['namedetails'] = $aPointDetails['sNameDetails'];
2012-03-04 19:41:43 +04:00
$aFilteredPlaces[] = $aPlace;
}
2015-08-15 10:52:48 +03:00
javascript_renderData($aFilteredPlaces);