On Aug 23, 12:32 pm, DGiglio <[email protected]> wrote: > Hi all, > > My map was only intermittently showing it's markers, when I realized > that it has to do with using the www. prefix in the browser. I'm not > sure why this would be, FF doesn't throw any errors, just doesn't show > my markers. I thought it might be an issue of the KML not being > accessible w/o the www (for what reason I don't know) but I am able to > access the page with or without the www. > > See: > > http://culturenow.org/MuseumWithoutWalls/index.php(no markers) > > http://www.culturenow.org/MuseumWithoutWalls/index.php(markers) > > also - > > http://www.culturenow.org/MuseumWithoutWalls/index.php?page=entry&per... > (markers) > > http://culturenow.org/MuseumWithoutWalls/index.php?page=entry&permali... > (no markers) > > Any ideas?
It is not a map problem. You are running into the XMLHTTPRequest cross-domain restriction. You are accessing: url: 'http://www.culturenow.org/MuseumWithoutWalls..." from http://culturenow.org That is a different domain. Use a relative URL or redirect accesses to one of the 2 domains to the other and use that one. -- Larry > > Thank you. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
