unitsPerDip property

double unitsPerDip

The size of each device-independent pixel (DIP) in map units.

The represents the spatial resolution of the ArcGISMapViewController. The value changes according to the ArcGISMapViewController.scale (it decreases as the user zooms in, for example).

The value is NAN until the load status of the ArcGISMap is LoadStatus.loaded and the draw status of the GeoViewController is DrawStatus.completed.

Implementation

double get unitsPerDip {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapView_getUnitsPerDIP(_handle, errorHandler);
  });
}