Hi, I'm wanting to persist map tiles locally for access while internet access is poor. This will work such that closing the application and reopening it without internet displays locations previously viewed.
QMapControl has a simple implementation using something like:
p->map_control = new QMapControl(this);
p->map_control->enablePersistentCache(
std::chrono::minutes(30 * 24 * 60),
QDir(Settings::instance()->workspace().append("/").append("images")));
I suppose the implementation logic would be akin to ImageManager::getImage()
Is there something similar available in ArcGIS Runtime 100.8 Qt C++?
Many thanks!