Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

android get distance between two locations kotlin

Location startPoint=new Location("locationA");
startPoint.setLatitude(17.372102);
startPoint.setLongitude(78.484196);

Location endPoint=new Location("locationA");
endPoint.setLatitude(17.375775);
endPoint.setLongitude(78.469218);

double distance=startPoint.distanceTo(endPoint);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #android #distance #locations #kotlin
ADD COMMENT
Topic
Name
3+3 =