Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an doubt in java..hope i need a code for my application. Consider a taxi application, i want to get distance between two travelled places by taxi using latitude and longitutude..

I saw some examples in stack overflow,it is not sufficient to do my application...

Assume there are two buttons, start & stop

if i press start,it needs to start monitoring the distance if i press stop,it needs to stop monitoring the distance and calculate overall distance

for example: i am starting from 'a' & distance is 0000 i stopped in 'b' & distance is 0364

i want to get display like above mentioned in example I want in android pls suggest me to get results Results would be show as TextView..

share|improve this question
2  
You should try some code... – raju Apr 3 '12 at 10:14
1  
Find an app on the market that does it and buy it... you are a consumer, not a developer – musefan Apr 3 '12 at 10:17
developer.android.com/reference/android/location/Location.html Look into distanceTo or distanceBetween. You can create a Location object from a latitude and longitude: Location location = new Location(""); location.setLatitude(lat); location.setLongitude(lon); Then you can calculate distance between two geopoints in android – Agarwal Shankar Apr 3 '12 at 10:18

closed as not a real question by Wooble, Jave, alextsc, Luksprog, Samir Mangroliya Apr 3 '12 at 10:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

you have distanceTo for this purpose.

share|improve this answer

You can use this:

void android.location.Location.distanceBetween(double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] results)

Computes the approximate distance in meters between two locations, and optionally the initial and final bearings of the shortest path between them. Distance and bearing are defined using the WGS84 ellipsoid.

The computed distance is stored in results[0]. If results has length 2 or greater, the initial bearing is stored in results[1]. If results has length 3 or greater, the final bearing is stored in results[2].

share|improve this answer
Thanks for all...I got the solution.. – Anand Apr 28 '12 at 8:26

I think ths link will help you, link

Thanks....

share|improve this answer

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