Google Map Geocode API返回null

时间:2015-12-17 12:08:10

标签: php google-maps google-maps-api-3 geocoding google-geocoder

当我尝试通过网址调用Google Maps Geocode API时,它可以正常工作并返回正确的JSON。

例如,这是URL:

  

https://maps.googleapis.com/maps/api/geocode/json?address=2140+Amphitheatre+Parkway,+Mountain+View,+IN&key=AIzaSyCUDSJ2GBE1DHupbAZT4u8gZqclkIhmb0M

当我尝试使用我的PHP代码时,它会返回null。

以下是我的代码:

<?php
 
function lookup($string){
 
   $string = str_replace (" ", "+", urlencode($string));
   $details_url = "http://maps.googleapis.com/maps/api/geocode/json?address=".$string."&sensor=false";
 
   $ch = curl_init();
   curl_setopt($ch, CURLOPT_URL, $details_url);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   $response = json_decode(curl_exec($ch), true);
 
   // If Status Code is ZERO_RESULTS, OVER_QUERY_LIMIT, REQUEST_DENIED or INVALID_REQUEST
   if ($response['status'] != 'OK') {
    return null;
   }
 
   print_r($response);
   $geometry = $response['results'][0]['geometry'];
 
    $longitude = $geometry['location']['lat'];
    $latitude = $geometry['location']['lng'];
 
    $array = array(
        'latitude' => $geometry['location']['lng'],
        'longitude' => $geometry['location']['lat'],
        'location_type' => $geometry['location_type'],
    );
 
    return $array;
 
}
 
$city = 'San Francisco, USA';
 
$array = lookup($city);
var_dump($array);
 
?>
</pre>

我尝试添加和删除API密钥,但它仍然返回null。

感谢任何支持。

1 个答案:

答案 0 :(得分:0)

看起来代码很好并且运行良好,您只需要检查是否启用了卷曲。我认为这是你无法用php获取数据的原因。