我正在使用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
}
然而,生成的图像似乎有难看的白线,而不是标准的细红色国家(和联邦)边界。
有什么办法可以让截图看起来像原始地图?