Jquery Javascript Google Maps: Getting Coordinates
I have div with coordinates attribute:
..
I'm getting coordinates with the help of jquery: var coSolution 1:
Provided that var coord = $(".c").attr("coordinates")
actually works, you'd have the same as
var coord = "32.100,-118.3232"
That is a string, but the google.maps.LatLng()
object takes 2 numerical parameters. So,
var coord = "32.100,-118.3232";
var arr = coord.split(',');
var latlon = new google.maps.LatLng(parseFloat(arr[0]),parseFloat(arr[1]));
addmarker(latlon);
Post a Comment for "Jquery Javascript Google Maps: Getting Coordinates"