Skip to content

Instantly share code, notes, and snippets.

@sbis04

sbis04/main.dart Secret

Created May 30, 2020 09:16
Show Gist options
  • Save sbis04/fcd45637b9d0f3f41c9d8517897bda82 to your computer and use it in GitHub Desktop.
Save sbis04/fcd45637b9d0f3f41c9d8517897bda82 to your computer and use it in GitHub Desktop.
// Calculating the distance between the start and the end positions
// with a straight path, without considering any route
double distanceInMeters = await Geolocator().distanceBetween(
startCoordinates.latitude,
startCoordinates.longitude,
destinationCoordinates.latitude,
destinationCoordinates.longitude,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment