forked from hans/Nominatim
don't have an address property in the return if we have not got address data
This commit is contained in:
@@ -47,7 +47,7 @@
|
||||
$aPlace['icon'] = $aPointDetails['icon'];
|
||||
}
|
||||
|
||||
if (isset($aPointDetails['address']))
|
||||
if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
|
||||
{
|
||||
$aPlace['address'] = $aPointDetails['address'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user