course static method

double course(
  1. Point firstPoint,
  2. Point secondPoint
)

Calculate the course (bearing) between two points in degrees in the range [0, 360].

Implementation

static core.double course(mapkit_geometry_point.Point firstPoint,
    mapkit_geometry_point.Point secondPoint) {
  return _course(
    firstPoint,
    secondPoint,
  );
}