web-dev-qa-db-ja.com

GeoPointを場所に変換する

これは非常にわかりにくい質問ですが、 GeoPointLocation に変換する最良の方法は何ですか? Androidプラットフォーム。

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

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