我正在尝试使用 MKMapSnapshotter 的 startWithCompletionHandler 方法获取地图视图的快照。并且我想将自定义引脚注释视图添加到快照中。我的自定义注释视图中有一个标签。所以当我获取快照时我无法显示该标签。这是代码:
let snapshotter = MKMapSnapshotter(options: options)
snapshotter.startWithCompletionHandler() {
snapshot, error in
if error != nil {
completion(image: nil, error: error)
return
}
let image = snapshot.image
let pin = MKPinAnnotationView(annotation: nil, reuseIdentifier: "") // I want to use custom annotation view instead of MKPinAnnotationView
let pinImage = UIImage(named: "pinImage")
UIGraphicsBeginImageContextWithOptions(image.size, true, image.scale);
image.drawAtPoint(CGPointMake(0, 0))
var homePoint = snapshot.pointForCoordinate(coordinates[0])
pinImage!.drawAtPoint(homePoint)
pinImage!.drawAtPoint(snapshot.pointForCoordinate(coordinates[1]))
let finalImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
completion(image: finalImage, error: nil)
}
如您所见,drawAtPoint 是 UIImage 的函数。我尝试使用 UIImageView 然后将标签作为子视图添加到 imageView 但我不能将 drawAtPoint 与 imageView 一起使用,所以我的问题是我无法将标签添加到 mapView 快照。
您可以在链接中看到我的意思: https ://www.dropbox.com/s/83hnkiqi87uy5ab/map.png?dl=0
谢谢你的建议。