2013-07-02 173 views
0

我有一個MySql數據庫的地址,我想嵌入谷歌地圖API顯示一個地址。嵌入谷歌地圖地址

如何使用Google地圖API在地圖上嵌入顯示其中一個地圖的地圖。

請幫助

感謝:d

+0

https://developers.google.com/maps/documentation/javascript/geocoding – geocodezip

+0

獲得的緯度和經度[有什麼你嘗試過](http://mattgemmell.com/2008/12/08/what-have-you-tried/)到目前爲止,你卡在哪裏? – Bjoern

+0

@Bjoem我還沒有嘗試過任何東西。我還沒有玩過地圖API。 –

回答

1

你想知道的緯度和經度的值,以紀念在地圖上的位置。 您可以使用Google API獲取經度和緯度。將此值傳遞給Google MAP。 Get latitude and longitude檢查此鏈接使用谷歌API

腳本映射畫布

<div id="map_canvas" style="width:650px; height:300px"></div> 
lat = latitude value from Google API 
lon = longitude value from Google API 
var mapOptions = { 
center: new google.maps.LatLng(lat,lon), 
zoom: 8, 
mapTypeId: google.maps.MapTypeId.ROADMAP, 
}; 
var map = new google.maps.Map(document.getElementById("map_canvas"),mapOptions); 
+0

我不知道經緯度。我只有一個地址。 –

+1

http://stackoverflow.com/questions/8633574/get-latitude-and-longitude-automatically-using-php-api選中此鏈接。你可以從地址獲得緯度和經度。 – Wishnu

+0

哦,好的。對不起,我一開始沒有閱讀,但現在我明白了。非常感謝。我試試吧 –