I am trying to setup doing preplanned area scheduled update based on the capability. It would seem to me this would be associated to the pre-planned area but from what I can find it looks like you do this through the OfflineMapSyncTask
What I found is something along these lines:
var task = await OfflineMapSyncTask.CreateAsync(map);
var parameters = new OfflineMapSyncParameters
{
SyncDirection = SyncDirection.Download,
PreplannedScheduledUpdatesOption = PreplannedScheduledUpdatesOption.DownloadAllUpdates
};
var job = task.SyncOfflineMap(parameters);
var results = await job.GetResultAsync();
Is this the proper way to download delta changes on the server for a preplanned area that has a daily update?
Thanks,
-Joe