enableOverlayOfflineDataGrabber static method
Enables the offline data grabber for the overlay with the given uid. The offline data grabber downloads an overlay covering dataset for every new downloaded road map content. The offline data is automatically grabbed immediately after a road map content download finishes & is stored in the SDK permanent cache. Parameters
- IN uid The overlay uid
Returns
* GemError.success on success, GemError.notFound if the overlay is not found.
Implementation
static GemError enableOverlayOfflineDataGrabber(int uid) {
final OperationResult resultString = staticMethod(
'OverlayService',
'enableOverlayOfflineDataGrabber',
args: uid,
);
return GemErrorExtension.fromCode(resultString['result']);
}