X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/28a5ef899ed824fa857427708607271926a20ef3..54ef9105d049ff13286f1438e2562594f6cc8cb7:/website/hierarchy.php diff --git a/website/hierarchy.php b/website/hierarchy.php index 8562de33..6a281aa8 100755 --- a/website/hierarchy.php +++ b/website/hierarchy.php @@ -1,19 +1,17 @@ 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(); @@ -49,13 +47,13 @@ $iPlaceID = (int)$_GET['place_id']; - $sAuxHouseNumber = false; - $iParentPlaceID = $oDB->getOne('select parent_place_id from location_property_tiger where place_id = '.$iPlaceID); - if ($iParentPlaceID) + if (CONST_Use_US_Tiger_Data) { - $iPlaceID = $iParentPlaceID; + $iParentPlaceID = $oDB->getOne('select parent_place_id from location_property_tiger where place_id = '.$iPlaceID); + if ($iParentPlaceID) $iPlaceID = $iParentPlaceID; } - else + + if (CONST_Use_Aux_Location_data) { $iParentPlaceID = $oDB->getOne('select parent_place_id from location_property_aux where place_id = '.$iPlaceID); if ($iParentPlaceID) $iPlaceID = $iParentPlaceID; @@ -67,14 +65,33 @@ $oPlaceLookup->setPlaceId($iPlaceID); $aPlaceAddress = array_reverse($oPlaceLookup->getAddressDetails()); + + if (!sizeof($aPlaceAddress)) + { + echo "Unknown place id."; + exit; + } + + $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)'; + $sOSMUrl = 'http://www.openstreetmap.org/browse/'.$sOSMType.'/'.$aPlace['osm_id']; + 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"); @@ -86,52 +103,52 @@ $sSQL .= " order by rank_address asc,rank_search asc,localname,class, type,housenumber"; $aParentOfLines = $oDB->getAll($sSQL); - if (sizeof($aParentOfLines)) - { - echo '
There are more child objects which are not shown.
'; - } - echo ''; - } + if (!isset($aGroupedAddressLines[$aAddressLine['label']])) $aGroupedAddressLines[$aAddressLine['label']] = array(); + $aGroupedAddressLines[$aAddressLine['label']][] = $aAddressLine; + } + foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines) + { + echo "There are more child objects which are not shown.
'; + } + echo ''; + } exit;