MKAnnontation引脚图像调整大小问题

时间:2019-01-08 03:46:12

标签: ios swift mkmapview mkannotationview

MKAnnotation的自定义图钉图片。当点击或缩放地图时,自定义图钉会被拉伸,并且用于家庭地图的汽车图钉标记的开口很大。这是我在mapview中得到的输出结果:

enter image description here

这是到目前为止我尝试过的代码:

var pin = MKAnnotationView()
var userPinView: MKAnnotationView!

if annotation is MKUserLocation {

    pin = mapView.view(for: annotation) ?? MKAnnotationView(annotation: annotation, reuseIdentifier: nil)
    let pinImage = UIImage(named: "carIcon3")
    let size = CGSize(width: 38, height: 44)
    UIGraphicsBeginImageContext(size)
    pinImage!.draw(in: CGRect(x: 0, y: 0, width: size.width, height: size.height))
    let resizedImage = UIGraphicsGetImageFromCurrentImageContext()
    pin.image = resizedImag
    userPinView = pin
    userPinView.contentMode = .scaleAspectFill
    userPinView.clipsToBounds = true
    return pin
}

if !(annotation is MKPointAnnotation) {
    return nil
}

let annotationIdentifier = "AnnotationIdentifier"
var annotationView = mapView.dequeueReusableAnnotationView(withIdentifier: annotationIdentifier)

if annotationView == nil {
    annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: annotationIdentifier)
    //            annotationView!.canShowCallout = true
} else {
    annotationView!.annotation = annotation
}
return annotationView

如何获得这样的结果:

enter image description here

尝试使用用户当前位置标记。但它崩溃了

   func locationManager(_ manager: CLLocationManager, didUpdateHeading newHeading: CLHeading) {

        UIView.animate(withDuration: 0.005) {

        let angle = newHeading.trueHeading.toRadians() // convert from degrees to radians

        self.userPinView.transform = CGAffineTransform(rotationAngle: CGFloat(angle)) // rotate the picture
    }
}

在这里,我执行的代码didselect和deselect用于位置注释。

     func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {

    if annotView == true {

        let heights = 70

        let widths = 50

        UIView.animate(withDuration: 0.5, delay: 0.0, options: .curveLinear, animations: {

            view.frame.size = CGSize(width: widths, height: heights)

        })
    }

}

func mapView(_ mapView: MKMapView, didDeselect view: MKAnnotationView) {

    let heights = 70

    let widths = 50

    UIView.animate(withDuration: 0.5, delay: 0.0, options: .curveLinear, animations: {

        view.frame.size = CGSize(width: view.frame.width - CGFloat(widths), height: view.frame.height - CGFloat(heights))

    })
}

1 个答案:

答案 0 :(得分:1)

尽管我无法重现此问题,但建议进行一些更改:

  1. 分隔视图配置逻辑,让子类MKAnnotationView像这样:

    class CarAnnotationView: MKAnnotationView {
        override var annotation: MKAnnotation? {
            didSet {
                let size = CGSize(width: 38, height: 44)
                UIGraphicsBeginImageContext(size)
                UIImage(named: "carIcon")?.draw(in: CGRect(origin: .zero, size: size))
                self.image = UIGraphicsGetImageFromCurrentImageContext()
                UIGraphicsEndImageContext()
            }
        }
    }
    
  2. mapView(_:viewFor:)中进行
  3. 更改以利用可重用的视图,如下所示:

    func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
        if annotation is MKUserLocation {
            userPinView = mapView.dequeueReusableAnnotationView(withIdentifier: "carId") as? CarAnnotationView
            if (userPinView == nil) {
                userPinView = CarAnnotationView(annotation: nil, reuseIdentifier: "carId")
            }
    
            userPinView.annotation = annotation
            userPinView.setNeedsLayout()
            // userPinView.centerOffset = CGPoint(x: 0, y: -view.bounds.midY)
    
            return userPinView
        }
    
        guard annotation is MKPointAnnotation else { return nil }
    
        let annotationIdentifier = "AnnotationIdentifier"
        ...
        return annotationView
    
    }
    
  4. 删除不必要的变量

    var pin = MKAnnotationView()