我正在使用MapKit通过在mapView上添加MKTileOverlay来创建卫星和雷达动画。
使用UISlider和PlayButton,我可以通过播放MKOverlayRenderer的alpha来创建动画,就像GIF一样(根据滑块的位置将它们设置为0或0.75)。
动画非常流畅,我的所有卫星和雷达图块都在mapView上正确加载。
我遇到了缓存管理的一个问题。
我意识到MapKit没有为我的tileOverlay使用缓存,这就是为什么我使用库PINCache来保存我的磁贴,以便每次我都不会请求和下载图像#39;播放动画。
我的实施:
我覆盖方法URLForTilePath
以构建我的网址以获取我的图块图片。
- (NSURL *)URLForTilePath:(MKTileOverlayPath)path{
double latMin, latMax, longMin, longMax;
path.contentScaleFactor = 1.0;
NSMutableArray *result = [[NSMutableArray alloc] init];
result = getBBoxForCoordinates((int)path.x, (int)path.y, (int)path.z);
longMin = [[result objectAtIndex:0] doubleValue];
latMin = [[result objectAtIndex:1] doubleValue];
longMax = [[result objectAtIndex:2] doubleValue];
latMax = [[result objectAtIndex:3] doubleValue];
NSString *finalURL = self.url;
finalURL = [finalURL stringByReplacingOccurrencesOfString:@"DATE"
withString:_date];
NSString *bbox = [NSString stringWithFormat:@"bbox=%f,%f,%f,%f", longMin, latMin, longMax, latMax];
finalURL = [finalURL stringByReplacingOccurrencesOfString:@"BBOX"
withString:bbox];
return [NSURL URLWithString:finalURL];
}
调用URLForTilePath
的关键方法是我loadTileAtPath
的实现:
- (void)loadTileAtPath:(MKTileOverlayPath)path
result:(void (^)(NSData *data, NSError *error))result
{
if (!result)
{
return;
}
NSString *str = self.isRadar == true ? [NSString stringWithFormat:@"Radar%@", self.date] : [NSString stringWithFormat:@"Satellite%@", self.date];
NSData *cachedData = [[PINCache sharedCache] objectForKey:str];
if (cachedData)
{
result(cachedData, nil);
}
else
{
NSURLRequest *request = [NSURLRequest requestWithURL:[self URLForTilePath:path]];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSString *str = self.isRadar == true ? [NSString stringWithFormat:@"Radar%@", self.date] : [NSString stringWithFormat:@"Satellite%@", self.date];
[[PINCache sharedCache] setObject:data forKey:str block:nil];
result(data, connectionError);
}];
}
}
基本上我想要实现的目标是:
URLForTilePath
提供的网址下载磁贴。str
是我的缓存管理密钥我可以看到缓存管理工作正常,Overlays的渲染速度更快,但我遇到的主要问题是它不会在相应的坐标处加载和构建切片。
我的mapView就像是错误构建的世界之谜。
用我的代码,你能看到我做错了吗?
答案 0 :(得分:0)
我无法找到mapKit导致此内存/缓存管理问题的原因。
我决定尝试使用GoogleMap,我花了不到2个小时来实现它,结果令人惊讶。
我想通过Apple解决方案来尊重Apple社区,但谷歌地图为我提供了更多的表现。