gpt4 book ai didi

ios - 如何将 MKZoomScale 转换为标准 [0-20] 缩放级别?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:12:20 27 4
gpt4 key购买 nike

我想根据 Google map 等 map 平台使用的标准 [0-20] 缩放级别在 drawMapRect:zoomScale:inContext: 中编写一些绘图规则,但我不能似乎找到了将 MKZoomScale 转换为该比例的公式。有没有人要?

最佳答案

在 MKMapView 上尝试这个类别

@interface MKMapView (Additions)
- (double)zoomLevel;
@end


@implementation MKMapView (Additions)

- (double)zoomLevel {
double totalTilesAtMaxZoom = MKMapSizeWorld.width / 256.0;
NSInteger zoomLevelAtMaxZoom = log2(totalTilesAtMaxZoom);

return MAX(0, zoomLevelAtMaxZoom + log2f(self.zoomScale));
}

@end

关于ios - 如何将 MKZoomScale 转换为标准 [0-20] 缩放级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38335049/

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