I'm trying to geocode an array of locations and put the results into an array, but I can't seem to get it to work properly. Is it possible to push data into my array from the results function?
edit - I was able to get each location geocoded via a separate function being called with the info, but I'm not sure if the array is filling properly
Here's the code
var data = [];
geocoder = new google.maps.Geocoder();
function pushData(latlon,h1,d1){
alert(latlon + h1 + d1); //this is popping up with the correct info
data.push({
loc: latlon,
h: h1,
d: d1
});
}
cityArray = ['Chicago', 'New York', 'Dallas']
for (var i = 0; i < cityArray.length; i++) {
//document.write(cityArray[i]);
geocoder.geocode( { 'address': cityArray[i] }, function(results, status) { //use latlang to enter city instead of coordinates
if (status == google.maps.GeocoderStatus.OK) {
var latlon = results[0].geometry.location;
var h = 'test';
var d = 'test';
pushData(latlon,h,d);
}
else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
datavariable? – jeff Aug 14 '12 at 3:09data.push()call is being reached (addalert("here")directly before it to check)? – jeff Aug 14 '12 at 3:19