On Mar 17, 6:04 am, BeauRoch <[email protected]> wrote:
> I had a problem getting my data.xml file loaded on that web server.
>
> I have moved it to the following: http://beauroch.awardspace.com/
>
> The problem still exists and you will be able to see my data.xml file
> now.
The problem is these lines:
new GLatLng(parseFloat(links[i].getAttribute("lat1"))), (parseFloat
(links[i].getAttribute("lng1"))),
new GLatLng(parseFloat(links[i].getAttribute("lat2"))), (parseFloat
(links[i].getAttribute("lng2")))
The parentheses are incorrect...
should be:
new GLatLng(parseFloat(links[i].getAttribute("lat1")), parseFloat(links
[i].getAttribute("lng1"))),
new GLatLng(parseFloat(links[i].getAttribute("lat2")), parseFloat(links
[i].getAttribute("lng2")))
It is hard to see in the groups interface....
-- Larry
>
> On Mar 12, 3:04 pm, Rossko <[email protected]> wrote:
>
> > > The map is now posted on the following page:
>
> > >http://beauroch.synthasite.com/
>
> >http://beauroch.synthasite.com/data.xml 404 file not found, that
> > seems simple enough
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---