放大MKMapView时如何更改自定义图钉图像?

时间:2018-10-12 16:55:34

标签: swift mapkit mkannotation mkannotationview

我用过swift 4。我正在使用MKMapkit,并且为地图图钉添加了自定义注释图像。问题是,

假设,我有2张图片,例如image1image2。最初,将为所​​有映射图钉加载image1。现在,如果要放大地图视图,则需要将image1替换为image2。同样,如果要缩小,则需要将image2替换为image1。

那么,如果有人知道该怎么做?

1 个答案:

答案 0 :(得分:0)

我遇到了类似的问题,我就这样解决了

首先在地图委托中实现regionDidChangeAnimated

    func mapView(_ mapView: MKMapView, regionDidChangeAnimated animated: Bool) {

    calculateZoomFactor()//Create global var named zoomFactor
    print("*************************")
    if zoomFactor > x { //Change the x value as you wish
        print("Zoom close, you can remove your annotations, and create with new image2")
    } else {
        print("Zoom out, remove annotations, and add new annotations with image 1")
    }
    print("*************************")
}

这是我自定义的zoomFactor计算器

    func calculateZoomFactor() {
    let zoomWidth = mapView.visibleMapRect.size.width
    let zoomFactor = (log2(zoomWidth)) - 8.785//You can change this constant also
    self.zoomFactor = zoomFactor
}