extent property
The approximate bounds of the area covered by the WMS layer.
Implementation
Envelope? get extent {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WMSLayerInfo_getExtent(
_handle,
errorHandler,
);
});
return Envelope._fromHandle(
objectHandle,
);
}