skmaps如何放大导航中的当前位置

时间:2015-07-03 13:49:28

标签: ios skmaps

我在地图上使用导航,当我进行缩小(屏幕截图)时,我希望以放大为中心,我该怎么做?

这就是我的做法,但它不起作用:

-(IBAction)centrerAction:(id)sender

{

[self.skMap animateToLocation:userLocation.coordinate withDuration:0];
[self.skMap animateToZoomLevel:19];

}

感谢您的帮助。

enter image description here

1 个答案:

答案 0 :(得分:1)

我也试过没有成功。您也可以使用:

SKCoordinateRegion currentLocationRegion;
currentLocationRegion.center = [[SKPositionerService sharedInstance]currentCoordinate];
currentLocationRegion.zoomLevel = 19;

[self.skMap setVisibleRegion:currentLocationRegion];