fullExtent property

Envelope? fullExtent

The full extent of the source data.

Implementation

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