我正在尝试使用以下代码通过地址获取纬度和经度:
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);
}
问题是 results[0].geomety.location.latitude 和 longitude 是未定义的。
我在控制台的结果中看到的是下一个:
location: O
$a: 51.5414691
ab: -0.11492010000006303
为什么它显示 $a 和 ab 而不是纬度和经度