0
有沒有我可以在谷歌地圖地理編碼器(V3)使用任何屬性來動態地設置結果(google.maps.GeocoderResult
)語言?不使用HTML頭紙條標記<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&language=vi-VN"></script>
谷歌地圖API地址解析器(V3),如何設置語言上google.maps.GeocoderResult
例如
var G = new google.maps.Geocoder(); // google geocoder
G.geocode({'location': ll/*, 'language':'vi-VN'*/}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[0]) {
me.set({'locate':results[0].address_components});
me.set({'address':results[0].formatted_address});
} else {
alert("No results found");
}
} else {
alert("Geocoder failed due to: " + status);
}
原因我想建立一個區域樹連接點具有如圖所示相同區域
us
/ \
new york ...
/\
p1 p2
,P1和P2在同一地區'紐約'
謝謝
@Tritt:謝謝你的建議,我有更新一些信息 –
爲什麼要動態設置語言? p1和p2在同一個區域。好。所以呢?爲什麼要用除了用戶通過瀏覽器偏好選擇的語言以外的其他語言顯示結果? – Trott