I know that the Location.getBearing () function returns the bearing, if there is one when moving
public void onLocationChanged(Location lastLocation)
{
int bearing=lastLocation.getBearing()
}
so now it can be 170 degrees ... but I would like to know if there is something in the android that will give me the orientation direction (for example, for 170 degrees, direction: SSE south, southeast)
source
share