我知道这是一个非常愚蠢的问题 - 但是转换 GeoPoint
到 Location
在 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 转换为位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!