2

私が抱えている問題は、メソッドを呼び出すとbringToFrontAnnotation:、注釈がそのminZoomLevelプロパティを無視することです。

これは私がやっていることです:

- (void)mapView:(SKMapView *)mapView didSelectAnnotation:(SKAnnotation *)annotation
{
    [mapView bringToFrontAnnotation:annotation];

    //...
}

注釈がそのminZoomLevelプロパティに再び参加できる方法はありますか?

4

1 に答える 1

1

タップの問題は、実際には機能です。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

于 2015-01-09T11:21:46.357 に答える