私はMKMapSnapshotter
地図のスクリーンショットを作成するために使用していますUIImageView
。
let imageView = UIImageView()
imageView.frame = view.bounds
view.addSubview(imageView)
let options = MKMapSnapshotOptions()
options.scale = UIScreen.mainScreen().scale
options.region = mapView.region
options.size = mapView.frame.size
let snapshotter = MKMapSnapshotter(options: options)
snapshotter.startWithCompletionHandler { (snapshot, error) -> Void in
imageView.image = snapshot?.image
}
ただし、結果として得られる画像には、標準的な細い赤い国 (および連邦) の境界ではなく、醜い白い線が含まれているように見えます。
スクリーンショットを元の地図のように見せる方法はありますか?