This is maybe a noob question but im not 100% sure about it.

How can i make a Location Object using Geo points? I want to use it to get the distance between two points. I already found a thread where it says

Location loc1 = new Location("Location"); 
loc.setLatitude(geoPoint.getLatitudeE6);
loc.setLongitude(geoPoint.getLongitudeE6);

Location loc2 = new Location("Location2");
loc2.setLatitude(geoPoint.getLatitudeE6);
loc2.setLongitude(geoPoint.getLongitudeE6);

and then i would use the distanceTo() to get the distance between the two points.

My Questions What is the Providername for? ...new Location("What is this here???") So do i have to define a Provider before or something? I want to use this code in a for() to calaculate between more GeoPoints. And btw - i have to convert the E6 Values back to normal?

link|improve this question
provider is GPS or Network... GPS is accurate but might take some time and Network is opposite to it... Yes you have to set a provider to get a gps fix. – Farhan May 18 '11 at 6:25
feedback

2 Answers

Not exactly

loc.setLatitude() takes a double latitude. So the correct code is:

  loc.setLatitude( geoPoint.getLatitudeE6() / 1E6);

Location() constructor take the name of the GPS provider used. It can be LocationManager.GPS_PROVIDER or NETWORK_PROVIDER among other values

link|improve this answer
ok so i need to define a location manager before - or can i add this "LocationManager.GPS_PROVIDER" directly into the brackets like Location loc = new Location(LocationManager.GPS_PROVIDER) ? – user758610 May 18 '11 at 6:57
Yeah you dont need LocationManager. and yes that's how you do it. – Reno May 18 '11 at 7:18
ok big thx ;). now i know all what i wanted to know. – user758610 May 18 '11 at 7:26
feedback

To get the distance between two point you can use the Location class and more precisely the distanceBetween static method.

The doc is quite clear on what it does but here a quick code sample:

float[] results = new float[3];
Location.distanceBetween(destLatitude, destLongitude, mCurrentLocation.getLatitude(), mCurrentLocation.getLongitude(), results);
// result in meters, convert it in km
String distance = String.valueOf(Math.round(results[0] / 1000)) + " km");

To convert from minute/second to degree you can use the convert method of the Location class.

link|improve this answer
this is amazing thank you! – user758610 May 18 '11 at 15:24
If the answer suits you, please mark your question as solved. – ol_v_er May 20 '11 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.