我有非工作谷歌地圖。什麼可能是一個問題?對於GET地理cordinates谷歌地圖 - 使用網站上的地址顯示地圖
代碼:
$gmap = file_get_contents ("http://maps.google.com/maps/geo?q=". urlencode($row['gps']));
$json = json_decode ($gmap);
$suradnice = $json->Placemark[0]->Point->coordinates;
$gps = $s[1] .",". $s[0];
嵌入代碼:
<iframe width='295' height='360' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/?q={$gps}&ie=UTF8&t=h&z=12&vpsrc=0&ll={$gps}&output=embed'></iframe>
您的代碼是否能夠獲得座標?您正在使用已棄用的v2地理編碼服務,請參閱[當前版本]的文檔(https://developers.google.com/maps/documentation/geocoding/) – geocodezip 2013-04-10 10:00:38