MKMapSnapshotter将边框呈现为白色

时间:2015-09-22 07:28:00

标签: ios swift mkmapview mapkit mkmapsnapshotter

我正在使用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
}

然而,由此产生的图像似乎有丑陋的白线而不是标准的薄红色国家(和联邦)边界。

Simulator screenshot of image view

有什么方法可以让截图看起来像原始地图吗?

Simulator screenshot of map view

1 个答案:

答案 0 :(得分:2)

这似乎是一个模拟器问题。我在Simulator上看到了同样的问题,但在真正的iOS 8和iOS 9设备上,快照包含正确的国家边界。