Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将以下内容转换为与 Google maps v3 JS api 一起使用。
N37 10.320 W122 13.357
如何将其转换为与 LatLng 对象一起使用?
我期待它是两位小数,无论是正数还是负数。
谢谢!
我想这只是将度数转换为小数的问题。上面的坐标意味着 37 度 + 10.320 分钟。60 分钟等于 1 度,所以你应该得到:
lat = degrees + minutes/60
在你的例子中
37.172269 = 37 + 10.320/60
N/SE/W 转换为坐标的符号。我猜北方和东方意味着积极的迹象,南方和西方意味着消极。