Cast lat/lon to float; check for non-empty

This commit is contained in:
Evan Prodromou 2013-06-08 21:16:58 -04:00
parent bb0cf686df
commit 14fbd68a12
1 changed files with 17 additions and 15 deletions

View File

@ -906,25 +906,27 @@ class ActivityObject
list($lat, $lon) = explode(' ', $this->geopoint);
$object['location'] = array(
'objectType' => 'place',
'position' => sprintf("%+02.5F%+03.5F/", $lat, $lon),
'lat' => $lat,
'lon' => $lon
);
if (!empty($lat) && !empty($lon)) {
$object['location'] = array(
'objectType' => 'place',
'position' => sprintf("%+02.5F%+03.5F/", $lat, $lon),
'lat' => $lat,
'lon' => $lon
);
$loc = Location::fromLatLon($lat, $lon);
$loc = Location::fromLatLon((float)$lat, (float)$lon);
if ($loc) {
$name = $loc->getName();
if ($loc) {
$name = $loc->getName();
if ($name) {
$object['location']['displayName'] = $name;
}
$url = $loc->getURL();
if ($name) {
$object['location']['displayName'] = $name;
}
$url = $loc->getURL();
if ($url) {
$object['location']['url'] = $url;
if ($url) {
$object['location']['url'] = $url;
}
}
}
}