X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/671c08848c1531f0c52f0dfff9448086a6fc09cb..a8a700e16d286971c43c013b322a1fd4a339de4d:/website/reverse.php diff --git a/website/reverse.php b/website/reverse.php index ed877899..d997088a 100755 --- a/website/reverse.php +++ b/website/reverse.php @@ -1,53 +1,80 @@ getSet('format', array('html', 'xml', 'json', 'jsonv2'), 'xml'); - // Show address breakdown - $bShowAddressDetails = true; - if (isset($_GET['addressdetails'])) $bShowAddressDetails = (bool)$_GET['addressdetails']; +// Preferred language +$aLangPrefOrder = $oParams->getPreferredLanguages(); - // Preferred language - $aLangPrefOrder = getPreferredLanguages(); +$oDB =& getDB(); - $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); +$hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); - if (isset($_GET['osm_type']) && isset($_GET['osm_id']) && (int)$_GET['osm_id'] && ($_GET['osm_type'] == 'N' || $_GET['osm_type'] == 'W' || $_GET['osm_type'] == 'R')) - { - $oPlaceLookup = new PlaceLookup($oDB); - $oPlaceLookup->setLanguagePreference($aLangPrefOrder); - $oPlaceLookup->setIncludeAddressDetails($bShowAddressDetails); - $oPlaceLookup->setOSMID($_GET['osm_type'], $_GET['osm_id']); +$oPlaceLookup = new Nominatim\PlaceLookup($oDB); +$oPlaceLookup->loadParamArray($oParams); - $aPlace = $oPlaceLookup->lookup(); +$sOsmType = $oParams->getSet('osm_type', array('N', 'W', 'R')); +$iOsmId = $oParams->getInt('osm_id', -1); +$fLat = $oParams->getFloat('lat'); +$fLon = $oParams->getFloat('lon'); +$iZoom = $oParams->getInt('zoom', 18); - //if (!$iPlaceID) $sError = 'OSM ID Not Found'; - } - else - { - $oReverseGeocode = new ReverseGeocode($oDB); - $oReverseGeocode->setLanguagePreference($aLangPrefOrder); - $oReverseGeocode->setIncludeAddressDetails($bShowAddressDetails); +if ($sOsmType && $iOsmId > 0) { + $aPlace = $oPlaceLookup->lookupOSMID($sOsmType, $iOsmId); +} elseif ($fLat !== false && $fLon !== false) { + $oReverseGeocode = new Nominatim\ReverseGeocode($oDB); + $oReverseGeocode->setZoom($iZoom); - $oReverseGeocode->setLatLon($_GET['lat'], $_GET['lon']); - $oReverseGeocode->setZoom(@$_GET['zoom']); + $oLookup = $oReverseGeocode->lookup($fLat, $fLon); + if (CONST_Debug) var_dump($oLookup); - $aPlace = $oReverseGeocode->lookup(); - } + if ($oLookup) { + $aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup)); + if (sizeof($aPlaces)) { + $aPlace = reset($aPlaces); + } + } +} elseif ($sOutputFormat != 'html') { + userError('Need coordinates or OSM object to lookup.'); +} - if (CONST_Debug) exit; +if (isset($aPlace)) { + $fRadius = $fDiameter = getResultDiameter($aPlace); + $aOutlineResult = $oPlaceLookup->getOutlines( + $aPlace['place_id'], + $aPlace['lon'], + $aPlace['lat'], + $fRadius + ); - include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php'); + if ($aOutlineResult) { + $aPlace = array_merge($aPlace, $aOutlineResult); + } +} else { + $aPlace = []; +} + +logEnd($oDB, $hLog, sizeof($aPlace)?1:0); + +if (CONST_Debug) { + var_dump($aPlace); + exit; +} + +if ($sOutputFormat == 'html') { + $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1")); + $sTileURL = CONST_Map_Tile_URL; + $sTileAttribution = CONST_Map_Tile_Attribution; +} +include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');