Hi,
When I download data from my GPS it has the S27 26.559 W48 29.218 format for lat lng coordinates. When I put it in Google maps website, I get the location.
However when I try to use the format in my code it doesn't work:
var name = markers[i].getAttribute("name");
var type = markers[i].getAttribute("type");
var point = new google.maps.LatLng(
(markers[i].getAttribute("S27 26.559 W48 29.218")));
What am I doing wrong ?
Any suggestions? Appreciate any help.
Thanks
Sandro