arcGISMapLocation property

ArcGISPoint? arcGISMapLocation

The map position of the most recent location reported by the location data source in the projection of the current map view.

Implementation

ArcGISPoint? get arcGISMapLocation {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getMapLocation(
        _handle, errorHandler);
  });
  return ArcGISPoint._fromHandle(objectHandle);
}