MKMapSnapshotter 渲染边框为白色

MKMapSnapshotter renders borders white

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

但是,生成的图像似乎有难看的白线,而不是标准的细红色国家/地区(和联邦)边界。

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

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