hwrdprkns
hwrdprkns

Reputation: 7585

Convert GeoPoint to Location

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.

Upvotes: 22

Views: 28252

Answers (1)

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

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

Upvotes: 56

Related Questions