将 GeoPoint 转换为位置

时间:2023-03-22
本文介绍了将 GeoPoint 转换为位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我知道这是一个非常愚蠢的问题 - 但是转换 GeoPointLocation 在 Android 平台上.

I know this is a very noobish question -- but what is the best way to convert a GeoPoint to a Location on the Android platform.

推荐答案

double latitude = geoPoint.getLatitudeE6() / 1E6;
double longitude = geoPoint.getLongitudeE6() / 1E6;

location.setLatitude(latitude);
location.setLongitude(longitude);

这篇关于将 GeoPoint 转换为位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:Android 导入com.google 无法解决 下一篇:在网络和 GPS 提供商之间切换

相关文章