Wasn't it user_corrupt who wrote:
>
>I'm actually in the process of integrating a wiki system (TWiki) with
>a GoogleMap.
>
>http://pivcec.dyndns.org/geowiki/twiki/bin/view/Main/report is the
>TWiki page that displays the titles of all of the pages in my wiki,
>along with the latitude+longitude information that they each contain.
>
>http://pivcec.dyndns.org/geowiki/map/dynamic_map.html is the map that
>I am trying to code to read this information, and then make markers
>out of it.
>
>Aren't both of these things on the same domain? (http://
>pivcec.dyndns.org)
But your code doesn't try to read the data from there. It tries to read
the data from my localhost, and there are some security reasons why
that's not permitted.
Try changing
xhr.open('GET','http://localhost/geowiki/twiki/bin/view/Main/report');
To
xhr.open('GET','http://pivcec.dyndns.org/geowiki/twiki/bin/view/Main/re
port');
But watch out that you don't get into an infinite loop.
--
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---