isNavigating property

bool isNavigating

True if the GeoViewController is animating a viewpoint change or a navigation gesture is in progress, otherwise false.

Indicates if the Viewpoint of a GeoViewController is currently changing. This can be due to a programmatic animated change to the Viewpoint, or user interaction with the view, such as panning and zooming.

Implementation

bool get isNavigating {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeoView_getIsNavigating(_handle, errorHandler);
  });
}