I've got an iOS Runtime SDK app which with an Offline Sync mode and I'm trying to add a map image layer to the offline map.
I have enabled offline sync for all of the operational feature layers according to this article, but there are business reasons preventing me from publishing the map image layer in the same manner.
These are the blocking issues:
My question is if it is possible to include this map image layer in the offline map without publishing it as a sync-enabled feature service. I only have experience publishing layers in that manner, but my instincts tell me image layers need to be handled a different way I am not aware of. The map image layer is effectively readonly, so I wonder if it is necessary to fix all the underlying issues described above.
Solved! Go to Solution.
Hello Cory,
The points you mentioned would prevent you enabling sync on a feature service. You may want to take a look at the 'ExportTiles' operation. This operation lets clients export cache tiles. This may allow your application to export a copy of the map service tiles.
ArcGIS REST API - Export Tiles
Thanks,
Thomas.
Hello Cory,
The points you mentioned would prevent you enabling sync on a feature service. You may want to take a look at the 'ExportTiles' operation. This operation lets clients export cache tiles. This may allow your application to export a copy of the map service tiles.
ArcGIS REST API - Export Tiles
Thanks,
Thomas.