tilingMode property
The mode defines whether feature tiling is used to retrieve the features from the feature service.
The default tiling mode is FeatureTilingMode.enabledWhenSupported.
Implementation
FeatureTilingMode get tilingMode {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FeatureLayer_getTilingMode(
_handle,
errorHandler,
);
});
return FeatureTilingMode._fromCoreValue(
coreValue,
);
}
Implementation
set tilingMode(FeatureTilingMode value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FeatureLayer_setTilingMode(
_handle,
value.coreValue,
errorHandler,
);
});
}