Select to view content in your preferred language

Preplanned Area Scheduled Update

368
0
07-30-2025 08:49 AM
Labels (1)
JoeHershman
MVP Alum

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
0 Kudos
0 Replies