On Nov 24, 5:08 pm, John Schnell <[EMAIL PROTECTED]> wrote: > > This should be a map of the Inside Passage of Alaska. There are 13 > locations defined, and the zoom-factor for the map-center should be > (7). Unfortunately, it usually displays a map with California at the > center, and all kinds of other random zoom factors will appear, as > you > hit the REFRESH on your IE7 browser. Sometimes it will reset itself to > the > correct map-- usually with the wrong zoom factor, and the wrong map > center. > > Please keep in mind, this map was working correctly until today. > > Any thoughts?
You're doing multiple geocoding, and I suspect that there is a race condition. Why are you geocoding locations you actually know? You don't need to use the geocoder to convert DMS into decimal degrees: do that conversion yourself and don't use the geocoder. Then your code can simply go straight through and not run into asynchronicity problems. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
