direction method

double direction(
  1. GeoValue target
)

Calculates the direction to target.

Returned at a maximum of 180 degrees.

targetへの方向を計算します。

最大180度で返されます。

Implementation

double direction(GeoValue target) {
  return directionBetween(
    from: this,
    to: target,
  );
}