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.









share|improve this question























  • 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














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.









share|improve this question























  • 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












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.









share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 4:10

























asked Nov 11 at 3:59









Todd

9111




9111











  • 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










  • 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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

Evgeni Malkin