I have changed my code to
for(var i=0; i<address.length; i++){
geocoder.getLocations(address[i],function(response){
if(response){
place = response.Placemark[0];
point = new GLatLng(place.Point.coordinates[1],
place.Point.coordinates[0]);
map.setCenter(point, 12);
map.addOverlay(createmarker(point));
}
});
}but the problem is as it is.....! -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
