在我的Flex項目,我可以通過它的地址添加標記,而不是這樣的:通過地址而不是座標添加Google地圖標記?
var myGeographicCoordinates:LatLng = new LatLng(myLatitude, myLongitude);
例如通過「巴黎,法國」
在我的Flex項目,我可以通過它的地址添加標記,而不是這樣的:通過地址而不是座標添加Google地圖標記?
var myGeographicCoordinates:LatLng = new LatLng(myLatitude, myLongitude);
例如通過「巴黎,法國」
你應該閱讀Google's developer manual on Geocoding。它解釋瞭如何將地址轉換爲地理位置。我建議您在發佈之前嘗試查看Dev manual/API/Google。
看看[這個問題](http://stackoverflow.com/questions/7499862/how-to-geocode-an-address-into-lat-long -with-google-maps)爲一個實際的代碼示例。 – Scott 2013-07-04 03:35:39
添加標記,我不認爲你可以這樣做直接。相反,您需要對地址進行地理編碼,然後使用LatLng
來存儲結果。
退房谷歌的地理編碼API的位置:
詳細博客http://goo.gl/d8w1J0 – 2016-01-14 09:26:36