views:

93

answers:

2

I have this data... 45°25'02.98" 10°11'30.39", how can retrive Latitude and Longitude to pass at gLatLng?

+5  A: 

You can use this formula

lat = 45 + (25 / 60) + (2.98 / 3600)
lng = 10 + (11 / 60) + (30.29 / 3600)
antyrat
+1  A: 

Or punch in address here and get coords back.

http://itouchmap.com/latlong.html

heffaklump