]> git.openstreetmap.org Git - nominatim.git/blobdiff - website/reverse.php
rebase
[nominatim.git] / website / reverse.php
index 4ce5833f6129bb9a884a5ae6ee0708e7ac29f2fd..3ce7a20dd154513b43dab49835541d7e8e51b684 100755 (executable)
@@ -41,7 +41,7 @@ if ($sOsmType && $iOsmId > 0) {
 
     if ($oLookup) {
         $aPlaces = $oPlaceLookup->lookup(array($oLookup->iId => $oLookup));
-        if (!empty($aPlaces)) {
+        if (sizeof($aPlaces)) {
             $aPlace = reset($aPlaces);
         }
     }
@@ -55,7 +55,9 @@ if (isset($aPlace)) {
         $aPlace['place_id'],
         $aPlace['lon'],
         $aPlace['lat'],
-        $fRadius
+        $fRadius,
+        $fLat,
+        $fLon
     );
 
     if ($aOutlineResult) {
@@ -72,10 +74,8 @@ if (CONST_Debug) {
 }
 
 if ($sOutputFormat == 'html') {
-    $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
+    $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;
 }
-
-$sOutputTemplate = ($sOutputFormat=='jsonv2' ? 'json' : $sOutputFormat);
-include(CONST_BasePath.'/lib/template/address-'.$sOutputTemplate.'.php');
+include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');