extent property
An extent suitable for zooming the map to display the candidate.
Implementation
Envelope? get extent {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeResult_getExtent(
_handle,
errorHandler,
);
});
return Envelope._fromHandle(
objectHandle,
);
}