我拥有的地址是results[1].formatted_address
从包含 6 个数字(例如 530456)的数据库中检索的串联地址。然后我对其进行地理编码并在谷歌地图上放置一个标记。这部分是成功的。
我现在想在标记的信息窗口中显示完整地址,results[0].formatted_address
所以我所做的是对标记的 latLng 进行反向地理编码以获得完整地址,但导致整个地图消失。我这样做的方式是这样的:
var address;
var eventwindow;
function codeAddress(postal) {
geocoder.geocode( {'address': postal + ", Singapore"}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
eventwindow = new google.maps.InfoWindow();
var markerE = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
});
address = getMarkerAddress(results[0].geometry.location);
google.maps.event.addListener(marker, 'click', function(){
if(eventwindow)
eventwindow.close();
eventwindow = new google.maps.InfoWindow({
content: address,
});
eventwindow.open(map,marker);
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
function getMarkerAddress(location) {
geocoder.geocode({'latLng': location}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if(results[0])
{
address = results[1].formatted_address.substring(10);
}
}
else {
alert("Geocoder failed due to: " + status);
}
});
我不知道我这样做是否正确,也不知道我哪里出错了。有没有其他方法可以解决这个问题?如果有怎么办?