次のコードを使用して、住所で緯度と経度を取得しようとしています。
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 と経度が定義されていないことです。
コンソールの結果に表示されるのは次のとおりです。
location: O
$a: 51.5414691
ab: -0.11492010000006303
緯度と経度の代わりに $a と ab が表示されるのはなぜですか