initialZoomScale property

double initialZoomScale

The scale that the map should automatically be zoomed to upon receiving the first location update.

The initial map scale to which the ArcGISMapViewController will zoom when the first location update is received after the auto-pan mode is changed from LocationDisplayAutoPanMode.off to any other value. The default value is 10,000.

Implementation

double get initialZoomScale {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getInitialZoomScale(
        _handle, errorHandler);
  });
}
void initialZoomScale=(double value)

Implementation

set initialZoomScale(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDisplay_setInitialZoomScale(
        _handle, value, errorHandler);
  });
}