forked from hans/Nominatim
skip output of lat/lon in debug when no near point given
This commit is contained in:
@@ -545,8 +545,12 @@ function _debugDumpGroupedSearches($aData, $aTokens)
|
||||
echo "<td>".$aRow['sPostcode']."</td>";
|
||||
echo "<td>".$aRow['sHouseNumber']."</td>";
|
||||
|
||||
echo "<td>".$aRow['oNear']->lat()."</td>";
|
||||
echo "<td>".$aRow['oNear']->lon()."</td>";
|
||||
if ($aRow['oNear']) {
|
||||
echo "<td>".$aRow['oNear']->lat()."</td>";
|
||||
echo "<td>".$aRow['oNear']->lon()."</td>";
|
||||
} else {
|
||||
echo "<td></td><td></td>";
|
||||
}
|
||||
echo "<td>".$aRow['fRadius']."</td>";
|
||||
|
||||
echo "</tr>";
|
||||
|
||||
Reference in New Issue
Block a user