自定义的PIN图像
MKAnnotation
. 当点击或缩放地图时,自定义的别针会被拉伸,并且主地图汽车的别针标记的开口很大。以下是我在MapView中得到的输出结果:
以下是迄今为止我尝试过的代码:
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
如何得到这样的结果:
尝试使用当前位置标记。但它崩溃了
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))
})
}