supportsScheduledUpdatesForFeatures property
True if an offline map supports downloading of read-only scheduled update packages, false otherwise.
If this property is true, updates are generated whenever the offline map area is refreshed. For example, the offline map area could be refreshed according to its update schedule. For this approach the web map author must configure the online map to perform scheduled updates.
Updates are prepared once and cached for download by all users of the offline map area. Sharing a single set of cached updates, rather than performing individual sync operations, reduces the load on the back-end services. This approach is scalable for large deployments. As updates are only downloaded, this approach can only be used with read-only workflows. The updates reflect a snapshot of the feature data at the time the web map's offline map area was refreshed (for example, according to the update schedule). They do not reflect the most up-to-date feature data.
If this property is false, no updates will be available for download.
Implementation
bool get supportsScheduledUpdatesForFeatures {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore
.RT_OfflineMapUpdateCapabilities_getSupportsScheduledUpdatesForFeatures(
_handle,
errorHandler,
);
});
}