On Jul 24, 6:15 am, TrackIt <[email protected]> wrote: > Demo page:http://www.trackit.co.nz/demo.aspx > > Been playing with maps for a couple of days and most things are > working smoothly. > But I have one problem that has driven me around in circles. > > On the demo page are two links: 'Google Inc' and 'TrackIt Limited' > both of these links use my displayGeoXml() function which uses GGeoXml > to retrieve a kml file containing a single point. (points are stored > in a table and fetched through web service which is urlrewritten, blah > de blah). > > anyway... Google Inc works and TrackIt Limited does not. > both kml files are basically the same except for the lat&lon values. > > The offending lat&lon figures are: -36.868955, 174.777633 > They will work if used like this: GLatLng(-36.868955, 174.777633) in > something like the drawPoint() function in my page, but they will not > work if supplied in a kml file that is digested by GGeoXml() > > I have tried these lat&lon values in heaps of google maps functions > and they work everywhere except when loaded through a kml file. > > Anyone got any ideas???
Don't work: <coordinates>-36.868955,174.777633</coordinates> Works: <coordinates>-122.084143,37.421972</coordinates> kml files store coordinates longitude, latitude, altitude the coordinates that don't work are backwards. -- 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 -~----------~----~----~----~------~----~------~--~---
