This is entirely correct, but I would go a little deeper. You do not say what program you are using to down-load data from the GPS. First, see if you can set the output format to decimale degrees. Second, try gpsbabel, http://www.gpsbabel.org/
Gpsbabel has a large number of output formats. I mostly use it to produce KML files directly. John Phillips On Nov 20, 10:16 pm, Rossko <[email protected]> wrote: > > var point = new google.maps.LatLng( > > (markers[i].getAttribute("S27 26.559 W48 29.218"))); > > > What am I doing wrong ? > > google.maps.LatLng() needs to be given two numbers representing > decimal degrees e.g. > google.maps.LatLng( -27.856 , 56.553 ) > > You'll need to parse the string of degrees and decimal minutes that > you have, and convert to decimal degrees. > Some ideashttp://www.google.com/search?q=convert+degree+minutes+decimal -- 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.
