我目前正在使用谷歌地图 API。在谷歌地图 API 中,我正在从特定地址获取经度和纬度。
这是代码:
$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address=1746+Esterbrook+Dr&sensor=false');
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
在这个纬度和经度中,值在我的实时服务器中显示为空(null)。在我的本地主机机器中,它工作得很好。显示谷歌地图有什么要包括的吗?