featureRequestMode property
Defines when features and non-spatial records are requested from the feature service.
The default mode is FeatureRequestMode.onInteractionCache.
Implementation
FeatureRequestMode get featureRequestMode {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceFeatureTable_getFeatureRequestMode(
_handle, errorHandler);
});
return FeatureRequestMode._fromCoreValue(coreValue);
}
Implementation
set featureRequestMode(FeatureRequestMode value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceFeatureTable_setFeatureRequestMode(
_handle, value.coreValue, errorHandler);
});
}