Skip to content

Instantly share code, notes, and snippets.

@VB10
Created December 9, 2020 00:07
Show Gist options
  • Save VB10/e11697d3cdcb004e647afec2b9f59007 to your computer and use it in GitHub Desktop.
Save VB10/e11697d3cdcb004e647afec2b9f59007 to your computer and use it in GitHub Desktop.
class RouteManager implements IRouteManager {
@override
double calculateDistance(LatLng cordinate, LatLng secondCordinate) {
return (distanceBetween(
cordinate.latitude, cordinate.longitude, secondCordinate.latitude, secondCordinate.longitude))
.roundToDouble() /
1000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment