我有一个位置对象的数组列表,我正在使用其中一些来构建一个完整的地址,然后对其进行地理编码。一旦我收到 OK 状态,我就会在地图上放置一个标记。这一切都很好。但是,现在我还想在每个标记上放置一个信息窗口,其中包含我的数组列表 LocationName 中的另一个属性。代码在这里:
function placeMarkers(myObjList){
var geocoder = new google.maps.Geocoder();
for(var i=0; i<myObjList.length; i++){
var fullAddress = myObjList[i].Address + ", " + myObjList[i].City + ", " + myObjList[i].State + ", " + myObjList[i].Zip;
/* The variable I would like to have access to in the geocode call */
var locationName = myObjList[i].LocationName;
geocoder.geocode( { 'address': fullAddress}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
alert(locationName);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
clickable: true
});
markers.push(marker);
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
}
当我获得该状态 OK 时,警报只是查看 locationName 是什么。但是在测试中它总是相同的值。一旦我可以调整它以每次都反映正确的值,然后我将代码排列起来以将信息窗口放在标记上。
任何帮助将不胜感激!