2014-04-17 86 views
0

我使用mapbox SDK,試圖緩存mapbox街道地圖瓷磚(不是MBTiles)。我使用的代碼試圖this thread沒有成功 - 我得到null*tileSourceMapbox地圖 - 離線瓷磚緩存爲ios

NSString *fullPath = [[NSBundle mainBundle] pathForResource:@"mapbox" ofType:@"json"]; 
NSString *tileJSON = [NSString stringWithContentsOfFile:fullPath encoding:NSASCIIStringEncoding error:nil]; 
RMMapboxSource *tileSource = [[RMMapboxSource alloc] initWithTileJSON:tileJSON]; 

,我無法找到任何其他代碼示例做類似的事情。

我通常需要做的是爲特定區域緩存切片,然後幾周後就可以使用切片。

任何代碼示例或指向正確的方向將是拯救生命!

回答

0

您確定fullPathtileJSON都不是nil嗎?