On Nov 6, 12:16 pm, Donal <[EMAIL PROTECTED]> wrote: > > http://www.pepperguides.com/genxml.php- generates xml file from sql > database
Unfortunately I can't get IE up and running at the moment to verify this, but there have been other cases of data which contains lat="" lon="". If you're not checking for this, IE will try and plot a marker at GLatLng(NaN,NaN) and crash. Once the code has crashed, no more markers are plotted. As the first marker in your XML has no lat/lon specified, the first one is likely to stop the code and nothing is plotted. The solution is either to test for a valid lat/lon and only plot markers which are valid, or to exclude markers having no lat/lon from your XML. Firefox handles empty lat and lon differently and generally doesn't experience a fatal error. What error are you getting in IE? 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 -~----------~----~----~----~------~----~------~--~---
