fullExtent property

Envelope? fullExtent

The full extent of the tile cache.

Implementation

Envelope? get fullExtent {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TileCache_getFullExtent(
      _handle,
      errorHandler,
    );
  });
  return Envelope._fromHandle(
    objectHandle,
  );
}