Merge pull request #1687 from annando/1506-location-api

API: Return the geo coordinates
This commit is contained in:
Tobias Diekershoff 2015-06-25 00:00:01 +02:00
commit 64655ee546
1 changed files with 8 additions and 3 deletions

View File

@ -2236,9 +2236,14 @@
unset($status["user"]["uid"]);
unset($status["user"]["self"]);
// 'geo' => array('type' => 'Point',
// 'coordinates' => array((float) $notice->lat,
// (float) $notice->lon));
if ($item["coord"] != "") {
$coords = explode(' ',$item["coord"]);
if (count($coords) == 2) {
$status["geo"] = array('type' => 'Point',
'coordinates' => array((float) $coords[0],
(float) $coords[1]));
}
}
$ret[] = $status;
};