我試圖通過地址用下面的代碼來獲得緯度和經度:谷歌地圖API - 地理編碼()不返回lat和長
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer();
geocoder = new google.maps.Geocoder();
var address = "HaYarkon 100 TelAviv Israel";
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK)
{
TelAviv = new google.maps.LatLng(results[0].geometry.location.latitude,results[0].geometry.location.longitude);
}
});
var myOptions = {
zoom:7,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: TelAviv
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
directionsDisplay.setMap(map);
}
的問題是,結果[0]。幾何位置,海拔和經度都未知。
我在控制檯結果中看到什麼是下一個:
location: O
$a: 51.5414691
ab: -0.11492010000006303
爲什麼它顯示$ a和的直接訪問AB代替緯度和經度
非常好,thx! – Alon
而在你的例子中,你不必創建一個新的'google.maps.LatLng'; 'results [0] .geometry.location'_is_a google.maps.LatLng'。 –
@Sean Mickey,也許你可以幫助解決另一個問題,我似乎無法將該數據保存到腳本中的變量中。我如何保存並使用它? – Alon