これは非常にわかりにくい質問ですが、 GeoPoint を Location に変換する最良の方法は何ですか? Androidプラットフォーム。
GeoPoint
Location
double latitude = geoPoint.getLatitudeE6() / 1E6; double longitude = geoPoint.getLongitudeE6() / 1E6; location.setLatitude(latitude); location.setLongitude(longitude);