gpt4 book ai didi

MKTileOverlay 和 PINCache 库的 iOS/MapKit 缓存管理问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:55:45 25 4
gpt4 key购买 nike

我正在使用 MapKit,以便通过在 mapView 上添加 MKTileOverlay 来创建卫星和雷达动画。

使用 UISlider 和 PlayButton,我可以通过播放 MKOverlayRenderer 的 alpha(根据 slider 的位置将它们设置为 0 或 0.75)来创建动画,例如 GIF。

动画非常流畅,我所有的卫星和雷达图 block 都在 mapView 上正确加载。

我遇到了一个缓存管理问题。

我意识到 MapKit 没有为我的 tileOverlay 使用缓存,这就是为什么我使用库 PINCache 来保存我的图 block ,这样它就不会在我每次播放动画时请求和下载图像。

我的实现:

我重写方法 URLForTilePath 以构建我的 URL 以获取我的平铺图像。

- (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 给出的 URL 发出请求以下载磁贴。
  • 然后我将对象设置为缓存。
  • 字符串 str 是我用于缓存管理的 Key
  • 我有 2 个重要值用于排序和区分图 block 、类型(雷达或卫星、不同图像、不同 URL)和日期。

我可以看到缓存管理正在运行,叠加层渲染速度更快,但我遇到的主要问题是它不会在相应的坐标处加载和构建图 block 。

我的 mapView 就像一个拼错世界的拼图。

根据我的这段代码,你能看出我做错了什么吗?

最佳答案

我找不到 mapKit 内存/缓存管理问题的原因。

我决定尝试使用 GoogleMap,我只用了不到 2 个小时就实现了它,而且结果非常惊人。

我想通过使用 Apple 解决方案来尊重 Apple 社区,但 Google Map 为我提供了更多的表现。

关于MKTileOverlay 和 PINCache 库的 iOS/MapKit 缓存管理问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40907584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com