Nominatim/lib/template/search-jsonv2.php

77 lines
2.2 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 = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
if ($sOSMType)
{
$aPlace['osm_type'] = $sOSMType;
$aPlace['osm_id'] = $aPointDetails['osm_id'];
}
if (isset($aPointDetails['aBoundingBox']))
{
$aPlace['boundingbox'] = array(
$aPointDetails['aBoundingBox'][0],
$aPointDetails['aBoundingBox'][1],
$aPointDetails['aBoundingBox'][2],
$aPointDetails['aBoundingBox'][3]);
if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
{
$aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
}
}
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'];
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'];
}
if (isset($aResult['asgeojson']))
{
$aPlace['geojson'] = json_decode($aResult['asgeojson']);
}
if (isset($aResult['assvg']))
{
$aPlace['svg'] = $aResult['assvg'];
}
if (isset($aResult['astext']))
{
$aPlace['geotext'] = $aResult['astext'];
}
if (isset($aResult['askml']))
{
$aPlace['geokml'] = $aResult['askml'];
}
2012-03-04 19:41:43 +04:00
$aFilteredPlaces[] = $aPlace;
}
javascript_renderData($aFilteredPlaces, array('geojson'));