moveRotateTo method
Moves to a new latitude and longitude and rotates to a specific angle in degrees clockwise.
Implementation
void moveRotateTo(double latitude, double longitude, double rotation) {
MapPosition newPosition = _lastPosition!.moveRotateTo(latitude, longitude, rotation);
setPosition(newPosition);
}