Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieve coords for google map

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

like image 330
Luis C. Avatar asked Feb 02 '10 14:02

Luis C.


2 Answers

You can use this formula

lat = 45 + (25 / 60) + (2.98 / 3600)
lng = 10 + (11 / 60) + (30.29 / 3600)
like image 71
antyrat Avatar answered Oct 23 '22 10:10

antyrat


Or punch in address here and get coords back.

http://itouchmap.com/latlong.html

like image 31
heffaklump Avatar answered Oct 23 '22 11:10

heffaklump