featureRequestMode property

FeatureRequestMode featureRequestMode

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);
}
void featureRequestMode=(FeatureRequestMode value)

Implementation

set featureRequestMode(FeatureRequestMode value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ServiceFeatureTable_setFeatureRequestMode(
        _handle, value.coreValue, errorHandler);
  });
}