Retrieve coords for google map
I have this data... 45°25'02.98" 10°11'30.39", how can retrive Latitude and Longitude t开发者_开发问答o pass at gLatLng?
You can use this formula
lat = 45 + (25 / 60) + (2.98 / 3600)
lng = 10 + (11 / 60) + (30.29 / 3600)
Or punch in address here and get coords back.
http://itouchmap.com/latlong.html
精彩评论