我正在研究 Cakephp 2.xi 已经通过使用 google map helper 成功实现了 google maps here
https://github.com/marcferna/CakePHP-GoogleMapHelper
现在我正在尝试根据纬度和经度获取格式化的地址
我在做这个
$url ="https://maps.googleapis.com/maps/api/geocode/json? latlng=$latitude,$longitude&sensor=true";
$json = @file_get_contents($url);
$data=json_decode($json);
$status = $data->status;
if($status=="OK"){
$address = $data->results[0]->formatted_address;
}
它给了我一个错误
试图在线获取非对象的属性
$status = $data->status;