I want my users to be able to download multiple offline map areas and be able to access them through only one tilesource. My initial thought was to have a RMDatabaseCache for every area and add that to the RMTileCache.
I've tried several approaches to this, but run into different problems with them:
Approach 1: Add a RMDatabaseCache to the RMTileCache manager and start a beginBackgroundCacheForTileSource for that RMTileCache.
PROBLEM: It seems the tiles are always downloaded to the original(first) RMTileCache.db and not the one I just added. Is there a way to force the download to a specific tileCache in the tileCashes array?
Approach 2: Create a tempRMTileCache and start a beginBackgroundCacheForTileSource for that one and then add tempRMTileCache.tileCashes[0] to the original RMTileChache through addCache.
PROBLEM: The tempRMTileCache references the same RMTileCache.db as the original RMTileCache and there doesn't seem to be a way to change that. I tried to find a way to delete the original tileCashes array at index 0 and adding a new RMTileCache with specific path (thus forcing the download to the only existing RMDatabaseCache that I added) but removing a tileCashes item does not seem to be possible.
Am I going about this completely the wrong way? Or am I just missing something?
Did you set the
RMMapboxSource
to becacheable
? Also what I did was inserting theRMDatabaseCache
at first level usinginsertCache(cache, atIndex: 0)
Here's the full code, I tried it in offline mode, after downloading the tiles, worked like a charm