rotatePoint method

  1. @override
CustomPoint<double> rotatePoint(
  1. CustomPoint<num> mapCenter,
  2. CustomPoint<num> point, {
  3. bool counterRotation = true,
})
override

Implementation

@override
CustomPoint<double> rotatePoint(
  CustomPoint mapCenter,
  CustomPoint point, {
  bool counterRotation = true,
}) =>
    _state.rotatePoint(
      mapCenter.toDoublePoint(),
      point.toDoublePoint(),
      counterRotation: counterRotation,
    );