> Please let me know what is wrong in the code and why the Markers are > not appearing.
You showAddress() function begins by checking if 'geocoder' is null. It is null, all the showAddress() calls take place before the page is fully loaded, that's to say before your load() function is called which sets up 'geocoder'. You'll need to rethink the whole thing anyway; banging off multiple geocoding requests WILL fail because there's a speed limit to prevent abuse. See - http://econym.org.uk/gmap/geo.htm But why would you want to slowly geocode those addresses at all, EVERY time someone visits your page, AND rely on the geocoder getting it right .. often it's just "close". Do the bank branches move around much? Geocode them once yourself, adjust for accuracy, and set the page up to use predefined lat/longs, it'll work much better. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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 -~----------~----~----~----~------~----~------~--~---
