本文介绍了如何将坐标转换为GeoPoint对象的格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我得到纬度和经度坐标的格式如下:
I am getting latitude and longitude coordinates in following format.
<coordinates>N44 47.975 E20 17.052</coordinates>
任何人都可以指导我如何将其转换为GeoPoint对象格式在地图上显示呢?任何帮助将是AP preciated。
Can anyone guide me how to convert it to geoPoint format to display it on map?Any help would be appreciated.
推荐答案
的<一个href="http://$c$c.google.com/android/add-ons/google-apis/reference/com/google/android/maps/GeoPoint.html"相对=nofollow>文档说明了一切:
GeoPoint point = new GeoPoint((int)(47.975 * 1E6), (int)(17.056 * 1E6))
这篇关于如何将坐标转换为GeoPoint对象的格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!