Sorry to posting this again

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 im really getting tired to solve this
its place the marker randomly sometimes 10, 12, or just 5 so what to do
to plot all the markers having my address array()...!

Thanks a lot please help me out....!

-- 
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.

Reply via email to