mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
wrong variable name in json output
This commit is contained in:
@@ -51,24 +51,24 @@
|
|||||||
$aPlace['address'] = $aPointDetails['address'];
|
$aPlace['address'] = $aPointDetails['address'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['asgeojson']))
|
if (isset($aPointDetails['asgeojson']))
|
||||||
{
|
{
|
||||||
$aPlace['geojson'] = json_decode($aResult['asgeojson']);
|
$aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['assvg']))
|
if (isset($aPointDetails['assvg']))
|
||||||
{
|
{
|
||||||
$aPlace['svg'] = $aResult['assvg'];
|
$aPlace['svg'] = $aPointDetails['assvg'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['astext']))
|
if (isset($aPointDetails['astext']))
|
||||||
{
|
{
|
||||||
$aPlace['geotext'] = $aResult['astext'];
|
$aPlace['geotext'] = $aPointDetails['astext'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['askml']))
|
if (isset($aPointDetails['askml']))
|
||||||
{
|
{
|
||||||
$aPlace['geokml'] = $aResult['askml'];
|
$aPlace['geokml'] = $aPointDetails['askml'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$aFilteredPlaces[] = $aPlace;
|
$aFilteredPlaces[] = $aPlace;
|
||||||
|
|||||||
@@ -50,24 +50,24 @@
|
|||||||
$aPlace['address'] = $aPointDetails['address'];
|
$aPlace['address'] = $aPointDetails['address'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['asgeojson']))
|
if (isset($aPointDetails['asgeojson']))
|
||||||
{
|
{
|
||||||
$aPlace['geojson'] = json_decode($aResult['asgeojson']);
|
$aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['assvg']))
|
if (isset($aPointDetails['assvg']))
|
||||||
{
|
{
|
||||||
$aPlace['svg'] = $aResult['assvg'];
|
$aPlace['svg'] = $aPointDetails['assvg'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['astext']))
|
if (isset($aPointDetails['astext']))
|
||||||
{
|
{
|
||||||
$aPlace['geotext'] = $aResult['astext'];
|
$aPlace['geotext'] = $aPointDetails['astext'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aResult['askml']))
|
if (isset($aPointDetails['askml']))
|
||||||
{
|
{
|
||||||
$aPlace['geokml'] = $aResult['askml'];
|
$aPlace['geokml'] = $aPointDetails['askml'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$aFilteredPlaces[] = $aPlace;
|
$aFilteredPlaces[] = $aPlace;
|
||||||
|
|||||||
Reference in New Issue
Block a user