我想在使用PHP的服務器上的地理編碼。以下是我的代碼:PHP的服務器地理編碼與谷歌地圖返回狀態確定,但沒有別的
static private function curl_file_get_contents($URL){
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);
$contents = curl_exec($c);
curl_close($c);
if ($contents) return $contents;
else return FALSE;
}
public function preview(Request $request)
{
$url = "https://maps.googleapis.com/maps/api/geocode/json?key=my_api_key&address=1600+Amphitheatre+Parkway,+Mountain+View,+CA";
$resp_json = self::curl_file_get_contents($url);
$resp = json_decode($resp_json, true);
if($resp['status']='OK'){
dd($resp);
}else{
dd('not ok');
}
當我運行這個我的狀態是OK和dd($ resp);得到執行,其輸出只是這樣的:
array:1 [▼
"status" => "OK"
]
我看過的例子JSON響應這裏:https://developers.google.com/maps/documentation/geocoding/intro
應該還有很多更應返回,但在我的情況下,它不會被退回。我不知道它爲什麼能有什麼關係我跑這個地方,雖然在這種情況下,它不應該返回狀態:OK
我休耕這裏http://erlycoder.com/45/php-server-side-geocoding-with-google-maps-api-v3
編輯例如: 如果我過去,這爲瀏覽器直接
那麼很多返回更多的數據
{
"results" : [
{
"address_components" : [
{
"long_name" : "1600",
"short_name" : "1600",
"types" : [ "street_number" ]
},
{
"long_name" : "Amphitheatre Parkway",
"short_name" : "Amphitheatre Pkwy",
"types" : [ "route" ]
},
{
"long_name" : "Mountain View",
"short_name" : "Mountain View",
"types" : [ "locality", "political" ]
},
{
"long_name" : "Santa Clara County",
"short_name" : "Santa Clara County",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "California",
"short_name" : "CA",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "USA",
"short_name" : "US",
"types" : [ "country", "political" ]
},
{
"long_name" : "94043",
"short_name" : "94043",
"types" : [ "postal_code" ]
}
],
"formatted_address" : "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA",
"geometry" : {
"location" : {
"lat" : 37.4223664,
"lng" : -122.084406
},
"location_type" : "ROOFTOP",
"viewport" : {
"northeast" : {
"lat" : 37.4237153802915,
"lng" : -122.0830570197085
},
"southwest" : {
"lat" : 37.42101741970851,
"lng" : -122.0857549802915
}
}
},
"place_id" : "ChIJ2eUgeAK6j4ARbn5u_wAGqWA",
"types" : [ "street_address" ]
}
],
"status" : "OK"
}
如果不支持curl,則不會產生提及的輸出。 –