mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
don't have an address property in the return if we have not got address data
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
$aFilteredPlaces['display_name'] = $aPlace['langaddress'];
|
$aFilteredPlaces['display_name'] = $aPlace['langaddress'];
|
||||||
$aFilteredPlaces['name'] = $aPlace['placename'];
|
$aFilteredPlaces['name'] = $aPlace['placename'];
|
||||||
if ($bShowAddressDetails) $aFilteredPlaces['address'] = $aAddress;
|
if ($bShowAddressDetails && $aAddress && sizeof($aAddress)) $aFilteredPlaces['address'] = $aAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_]+$/',$_GET['json_callback']))
|
if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_]+$/',$_GET['json_callback']))
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
$aPlace['icon'] = $aPointDetails['icon'];
|
$aPlace['icon'] = $aPointDetails['icon'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aPointDetails['address']))
|
if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
|
||||||
{
|
{
|
||||||
$aPlace['address'] = $aPointDetails['address'];
|
$aPlace['address'] = $aPointDetails['address'];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user