3
在我的網站我想獲得給定的PIN碼或郵政編碼的經度和緯度。 如果我給680721
作爲PIN碼或郵政編碼,那麼我想要使用PHP代碼獲取其相應的經度和緯度。 我該怎麼做? 如果這在PHP中是可行的? 我有php代碼來獲取給定地名的經度和緯度。使用PHP獲取緯度和經度從PIN碼
$Url='http://maps.googleapis.com/maps/api/geocode/json?address='.$exp_pjctloc[$i].'&sensor=false';
if (!function_exists('curl_init')){
die('Sorry cURL is not installed!');
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $Url);
curl_setopt($ch, CURLOPT_REFERER, "http://www.example.org/yay.htm");
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$output = curl_exec($ch);
curl_close($ch);
$search_data = json_decode($output);
$lat = $search_data->results[0]->geometry->location->lat;
$lng = $search_data->results[0]->geometry->location->lng;
但是我怎樣才能得到它通過使用PIN碼或郵政編碼?
我相信,一些國家(KHM,印度,KHM)使用術語「密碼」指區號或郵政編碼。我很困惑,直到我發現。 – Amadan 2011-12-20 07:39:36
嘗試向它傳遞更多相關數據,可能是因爲地理編碼api很難確定你想要的東西,如果你只是遞交一個數字,嘗試添加國家,省份等......如果你知道它們的話。 – ChrisR 2011-12-20 07:55:41