Created
December 9, 2020 00:07
-
-
Save VB10/e11697d3cdcb004e647afec2b9f59007 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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