mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
fix format error in polygon output
This commit is contained in:
@@ -450,7 +450,11 @@ init();
|
|||||||
echo ', '.$aResult['aBoundingBox'][1];
|
echo ', '.$aResult['aBoundingBox'][1];
|
||||||
echo ', '.$aResult['aBoundingBox'][2];
|
echo ', '.$aResult['aBoundingBox'][2];
|
||||||
echo ', '.$aResult['aBoundingBox'][3];
|
echo ', '.$aResult['aBoundingBox'][3];
|
||||||
if (isset($aResult['aPolyPoints'])) echo ', '.javascript_renderData($aResult['aPolyPoints']);
|
if (isset($aResult['aPolyPoints']))
|
||||||
|
{
|
||||||
|
echo ', ';
|
||||||
|
echo javascript_renderData($aResult['aPolyPoints']);
|
||||||
|
}
|
||||||
echo ');'."\n";
|
echo ');'."\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user