Skip to content

Instantly share code, notes, and snippets.

@utsmannn
Last active June 24, 2020 10:50
Show Gist options
  • Save utsmannn/90cf0f5b14f1aeda0ee4946a2465bd0a to your computer and use it in GitHub Desktop.
Save utsmannn/90cf0f5b14f1aeda0ee4946a2465bd0a to your computer and use it in GitHub Desktop.
fun getAngle(fromLatLon: LatLng, toLatLon: LatLng): Double {
var heading = 0.0
if (fromLatLon != toLatLon) {
heading = MathUtil.computeHeading(fromLatLon, toLatLon)
}
return heading
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment