我遇到的问题是,当我调用方法 bringToFrontAnnotation: 时,注释会忽略它的 minZoomLevel 属性。
这就是我正在做的:
- (void)mapViewSKMapView *)mapView didSelectAnnotationSKAnnotation *)annotation
{
[mapView bringToFrontAnnotation:annotation];
//...
}
注释有什么方法可以再次关注其 minZoomLevel 属性?
Best Answer-推荐答案 strong>
点击问题实际上是一个功能。 SKMapView 的设置属性有一个名为 annotationTapZoomLimit 的属性,默认设置为 12。
见:http://developer.skobbler.com/docs/ios/2.3.0/Classes/SKMapSettings.html#//api/name/annotationTapZoomLimit和 SKMapView 类引用:http://developer.skobbler.com/docs/ios/2.3.0/Classes/SKMapView.html
关于ios - SKMaps bringToFrontAnnotation : method is working wrong,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27558024/
|