开发者

Retrieve coords for google map

开发者 https://www.devze.com 2022-12-18 15:59 出处:网络
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

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

0

精彩评论

暂无评论...
验证码 换一张
取 消