Get latitude and longitude before the last element
up vote
0
down vote
favorite
I'm trying to get the distance between a whole track , so what I'm trying to do is the following.
First setup a listener that will trigger every lat lang changes, then just get the latest lat lang and get the lat langs before the last one , so I can measure the distance between the last lat lang and the previous one, then I'm planning to put it all into an array to sum it up and have the total distance when I stop my track.
I'm using a linkedlist to save latlangs
mLinkedList.add(new LatLng(location.getLatitude(), location.getLongitude()));
float results = new float[10];
Location.distanceBetween(needThisLatitude,needThisLongitude,locationResult.getLastLocation().getLatitude(),locationResult.getLastLocation().getLongitude(),results);
//Then I will save that results into an array and sum them up to get total distance.
java android google-maps
add a comment |
up vote
0
down vote
favorite
I'm trying to get the distance between a whole track , so what I'm trying to do is the following.
First setup a listener that will trigger every lat lang changes, then just get the latest lat lang and get the lat langs before the last one , so I can measure the distance between the last lat lang and the previous one, then I'm planning to put it all into an array to sum it up and have the total distance when I stop my track.
I'm using a linkedlist to save latlangs
mLinkedList.add(new LatLng(location.getLatitude(), location.getLongitude()));
float results = new float[10];
Location.distanceBetween(needThisLatitude,needThisLongitude,locationResult.getLastLocation().getLatitude(),locationResult.getLastLocation().getLongitude(),results);
//Then I will save that results into an array and sum them up to get total distance.
java android google-maps
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to get the distance between a whole track , so what I'm trying to do is the following.
First setup a listener that will trigger every lat lang changes, then just get the latest lat lang and get the lat langs before the last one , so I can measure the distance between the last lat lang and the previous one, then I'm planning to put it all into an array to sum it up and have the total distance when I stop my track.
I'm using a linkedlist to save latlangs
mLinkedList.add(new LatLng(location.getLatitude(), location.getLongitude()));
float results = new float[10];
Location.distanceBetween(needThisLatitude,needThisLongitude,locationResult.getLastLocation().getLatitude(),locationResult.getLastLocation().getLongitude(),results);
//Then I will save that results into an array and sum them up to get total distance.
java android google-maps
I'm trying to get the distance between a whole track , so what I'm trying to do is the following.
First setup a listener that will trigger every lat lang changes, then just get the latest lat lang and get the lat langs before the last one , so I can measure the distance between the last lat lang and the previous one, then I'm planning to put it all into an array to sum it up and have the total distance when I stop my track.
I'm using a linkedlist to save latlangs
mLinkedList.add(new LatLng(location.getLatitude(), location.getLongitude()));
float results = new float[10];
Location.distanceBetween(needThisLatitude,needThisLongitude,locationResult.getLastLocation().getLatitude(),locationResult.getLastLocation().getLongitude(),results);
//Then I will save that results into an array and sum them up to get total distance.
java android google-maps
java android google-maps
edited Nov 11 at 4:10
asked Nov 11 at 3:59
Todd
10211
10211
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24
add a comment |
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245727%2fget-latitude-and-longitude-before-the-last-element%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what are you asking exactly? you just described what you did.
– kamyar haqqani
Nov 11 at 4:18
Check out the SphericaUtil.computeLength - it may get you thinking about how to manage your points: googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/….
– Andy
Nov 12 at 3:24