find distance between two geo point with direction android

android, gps

Solution

You can find Direction between two locations by Bearing.

public float bearingTo (Location dest)

Problem

i am able to find distance between two geolocation by two Location objects here is below ``` mLoc.distanceTo(mLocTarget) ``` mLoc is current user Location and mLocTarget is target location of android now i want to find direction also means like 16m. West or 16m. North is it possible?

Original source