initialExtent property

Envelope? initialExtent

The initial extent of the source data.

Implementation

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