当前位置:  开发笔记 > 编程语言 > 正文

如何在MKMapView Swift中放大图钉

如何解决《如何在MKMapViewSwift中放大图钉》经验,为你挑选了1个好方法。

我希望引脚的位置在敲击引脚时放大,以便位置位于中心.我不知道该怎么做.请帮我.



1> 小智..:

你想要做的事情有很多.

    弄清楚敲击了哪个引脚

    将mapView置于攻丝针上

如果在项目中正确启动了mapView(以视图作为其委托),则可以使用mapView(_:didSelectAnnotationView :)方法完成上述两点,如下所示:

    func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView) {

        // get the particular pin that was tapped
        let pinToZoomOn = view.annotation

        // optionally you can set your own boundaries of the zoom
        let span = MKCoordinateSpanMake(0.5, 0.5)

        // or use the current map zoom and just center the map
        // let span = mapView.region.span

        // now move the map
        let region = MKCoordinateRegion(center: pinToZoomOn!.coordinate, span: span)
        mapView.setRegion(region, animated: true)
}

此方法告诉委托(您的视图最有可能)选择了一个地图注释视图并移动(和/或缩放)到该坐标区域.

推荐阅读
谢谢巷议
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有