> 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 ideas http://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.
