On Mar 9, 3:15 pm, many_tentacles <[email protected]> wrote: > Hi... > > I have some code which works fine in Firefox but when I view it in any > other browsers (mainly Safari and IE) it does some odd things. > > All of the info bubbles show the same content (that from the last > marker). > > I know it's the geocoding that's causing this to happen because it's > fine if I take this out. > > Does anyone have any ideas?
I think you should review your previous thread and implement some of the ideas suggested there: http://groups.google.com/group/google-maps-api/browse_thread/thread/535eb5cd679af3fd/ The issue you have is twofold: you are using the wrong tool for geocoding (and you shouldn't be geocoding client-side points which are determined beforehand); and you are running into scope/timing issues because you are using the wrong tool. You should geocode your points beforehand, if possible. If you have two many to do that, then geocode them in the client as I suggested before, sending the results back so you only do it once. What you will need to do though is to use the whole address, not just the postcode -- which isn't particularly accurate anyway. NB: Using Local Search for geocoding is against the Local Search Terms of Service http://code.google.com/apis/ajaxsearch/terms.html : "The API does not provide You with the ability to access, and You are not allowed to access, other underlying Google Services or data," such as geocode results. You must use the Maps geocoder. -- 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.
