On Nov 6, 4:16 am, Donal <[EMAIL PROTECTED]> wrote: > Hi All > > Apologies if this has already been covered but couldn't find a > solution in what was already posted. > > My map works fine in FF 3 (and safari and opera and Chrome) but for > some reason the markers are not showing up in IE7. > > Links are below - if anyone can check it out and tell me where I'm > going wrong I'd appreciate it. > > http://www.pepperguides.com/map.html > > http://www.pepperguides.com/genxml.php- generates xml file from sql > database > > http://www.pepperguides.com/googlemap.js- maps javascript
In IE6 I get an 'invalid argument' error. There are no values for the lat or lng attributes of a lot of your markers. IE doesn't like to display markers at GLatLngs of (NaN, NaN)... (look at your xml in the browser) Either remove the invalid points from the xml or check for that case in your javascript and don't create a marker if you don't have a valid latitude or longitude. -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
