我正在检索地图视图的中心,我需要将long和lats作为双精度传递给我的服务器,以便对数据库进行测试。
我如何将mapView.getMapCenter()。getLongitudeE6()转换为double?
答案 0 :(得分:16)
致电mapView.getMapCenter()
会返回GeoPoint
。 GeoPoint.getLongitudeE6()
和GeoPoint.getLatitudeE6()
都返回微度(基本上是度* 1E6)。
因此,在Java中,将微度转换为度数只需:
public static double microDegreesToDegrees(int microDegrees) {
return microDegrees / 1E6;
}