On Nov 18, 9:39 am, Vermeer <[EMAIL PROTECTED]> wrote: > Hi, > i have created a little testmaps with markers, but only a few markers > are shown. > I think the code is correct, has anybody an idea why i can't see all > markers? > here is the map:http://www.flammable.de/markertest.html
The geocoding of Munich is failing because of the special character in the German name. You should also have problems trying to geocode a zipcode of "96...". Your code isn't checking for any errors, it assumes that point will always contain a valid point. Submitting geocode requests in the way you are runs the risk of exceeding the speed limit and you will get error 620 for some of them. Those points (which will vary from time to time) won't have a valid point returned. Other than that, you are using the same geocoder object with multiple getLocations requests. If I remember correctly, GClientGeocoder uses the computer clock to differentiate between individual requests, and you will almost certainly have more than one with the same millisecond identifier. It does look like you're also suffering from this: you have 34 markers but only 27 individual results coming back. 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 -~----------~----~----~----~------~----~------~--~---
