从谷歌纬度检索纬度和经度

时间:2011-03-14 06:45:29

标签: php

我正在开发一个项目,我希望使用此代码检索纬度和经度,但事实并非如此 归我...请检查此代码

<?PHP
header('Content-Type: text/plain');
//$userkey='AIzaSyB2hw658V7RSzEYgwSHwYkaLm_505gqLhs';
//$url='https://www.googleapis.com/latitude/v1/currentLocation?key='.$userkey.'&type=json';

$userId = '30811844108.apps.googleusercontent.com';

$url = 'http://www.google.com/latitude/apps/badge/api?user='.$userId.'&type=json';
$content = file_get_contents( $url );
$json = json_decode( $content );
$coord = $json->features[0]->geometry->coordinates;

$lat = $coord[1];
$lon = $coord[0];

echo $lat.' x '.$lon;

//$newurl="http://jecrcgps.betu.tk/data.php?lat=$lat&lon=$lon";
//header("location: $newurl");exit;
?>

1 个答案:

答案 0 :(得分:0)

你确定这是正确的$ userid吗? 我正在测试该用户$ iserid,我刚收到“用户标识符的格式错误。”

也许你应该尝试$ userid = 30811844108;