From: Brian Quinion Date: Mon, 9 Sep 2013 14:55:30 +0000 (+0100) Subject: add a json output format for hierarchy X-Git-Tag: v2.2.0~31 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/a2ba8708cbf7d3a7504a6b097be51669dff139c8?ds=sidebyside add a json output format for hierarchy --- diff --git a/website/hierarchy.php b/website/hierarchy.php index 8562de33..a900cde1 100755 --- a/website/hierarchy.php +++ b/website/hierarchy.php @@ -6,14 +6,11 @@ require_once(CONST_BasePath.'/lib/PlaceLookup.php'); $sOutputFormat = 'html'; - /* - $fLoadAvg = getLoadAverage(); - if ($fLoadAvg > 3) - { - echo "Page temporarily blocked due to high server load\n"; - exit; - } - */ + if (isset($_GET['format']) && ($_GET['format'] == 'html' || $_GET['format'] == 'xml' || $_GET['format'] == 'json' || $_GET['format'] == 'jsonv2')) + { + $sOutputFormat = $_GET['format']; + } + ini_set('memory_limit', '200M'); $oDB =& getDB(); @@ -67,14 +64,26 @@ $oPlaceLookup->setPlaceId($iPlaceID); $aPlaceAddress = array_reverse($oPlaceLookup->getAddressDetails()); + $aBreadcrums = array(); foreach($aPlaceAddress as $i => $aPlace) { if (!$aPlace['place_id']) continue; - $sPlaceUrl = 'http://localhost/nominatim/details.php?place_id='.$aPlace['place_id']; + $aBreadcrums[] = array('placeId'=>$aPlace['place_id'], 'osmType'=>$aPlace['osm_type'], 'osmId'=>$aPlace['osm_id'], 'localName'=>$aPlace['localname']); + $sPlaceUrl = 'hierarchy.php?place_id='.$aPlace['place_id']; $sOSMType = ($aPlace['osm_type'] == 'N'?'node':($aPlace['osm_type'] == 'W'?'way':($aPlace['osm_type'] == 'R'?'relation':''))); $sOSMUrl = 'http://www.openstreetmap.org/browse/'.$sOSMType.'/'.$aPlace['osm_id']; - if ($i) echo " > "; - echo ''.$aPlace['localname'].' (osm)'; + if ($sOutputFormat == 'html') if ($i) echo " > "; + if ($sOutputFormat == 'html') echo ''.$aPlace['localname'].' (osm)'; + } + + $aDetails = array(); + $aDetails['breadcrumbs'] = $aBreadcrums; + + if ($sOutputFormat == 'json') + { + header("content-type: application/json; charset=UTF-8"); + javascript_renderData($aDetails); + exit; } $aRelatedPlaceIDs = $oDB->getCol($sSQL = "select place_id from placex where linked_place_id = $iPlaceID or place_id = $iPlaceID"); @@ -121,7 +130,7 @@ echo ' ('; echo ''.($aAddressLine['isarea']=='t'?'Polygon':'Point').''; if ($sOSMType) echo ', '.$sOSMType.' '.$aAddressLine['osm_id'].''; - echo ', GOTO'; + echo ', GOTO'; echo ', '.$aAddressLine['area']; echo ')'; echo '';