提前致谢。
如何在 iOS 中检测地图的缩放级别。就像找到滚动视图高度一样,意味着如何找到特定的缩放级别。
#define MERCATOR_RADIUS 85445659.44705395
-(int) Mapzoomlevel {
return 21- round(log2(self.mapView.region.span.longitudeDelta *
MERCATOR_RADIUS * M_PI / (180.0 * self.mapView.bounds.size.width)));
}
-(void)zoom_level_in_floatvalue {
NSLog(@"%f",[self Mapzoomlevel]);
}