I've got this piece of code where I'm trying to position a set of markers in a google map:
for(var i = 0; i < postcodes.length; i++) {
var address = postcodes[i].innerHTML +", uk";
geocoder.geocode({'address': address}, function(results, status){
if (status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
position: results[i].geometry.location,
map: map,
icon: image,
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
However, this returns as undefined where I try to set the position. If I use a number (0) instead of the variable i in results[#] it works fine but I can't iterate through the results then. Has anyone come across this problem before?
Thanks,
Uncaught TypeError: Cannot read property 'geometry' of undefined. – KerrM Dec 10 '11 at 18:01