origin property

ArcGISPoint origin

The origin of the tile info within the spatial reference.

The origin is the upper left corner of the tiling scheme grid.

Implementation

ArcGISPoint get origin {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TileInfo_getOrigin(_handle, errorHandler);
  });
  return ArcGISPoint._fromHandle(objectHandle)!;
}