> In my special case I need to > retrieve geocodes of many addresses and place a marker to that > location.
Even if you got your marker-passing to work, the whole approach is likely to fail because the geocoding service is protected from abuse by rate limits. First reconsider your whole strategy, geocoding the same addresses every time someone looks at your page is a bad choice: http://code.google.com/apis/maps/articles/geocodestrat.html If you must do multiple client-side geocoding, you will find it essential to implement error checking: http://econym.org.uk/gmap/geo.htm and this is a must-read: http://econym.org.uk/gmap/geomulti.htm -- 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.
