gpt4 book ai didi

swift3 - 放大后,MapView叠加层将被截断

转载 作者:行者123 更新时间:2023-12-04 08:56:11 24 4
gpt4 key购买 nike

我遇到了MKMapView的怪异问题。我已经使用了MKOverlayRenderer。现在的问题是当我缩小显示正确的图像时。但是在放大的情况下,图像的某些部分会被剪切掉。看起来MapView的一部分正位于叠加层上方。以下是我的叠加渲染器代码。

class MapOverlayRenderer: MKOverlayRenderer {
var overlayImage: UIImage
var plan: Plan

init(overlay: MKOverlay, overlayImage: UIImage, plan: Plan) {
self.overlayImage = overlayImage
self.plan = plan
super.init(overlay: overlay)
}

override func draw(_ mapRect: MKMapRect, zoomScale: MKZoomScale, in ctx: CGContext) {
let theMapRect = overlay.boundingMapRect
let theRect = rect(for: theMapRect)

// Rotate around top left corner
ctx.rotate(by: CGFloat(degreesToRadians(plan.bearing)));

// Draw the image
UIGraphicsPushContext(ctx)
overlayImage.draw(in: theRect, blendMode: CGBlendMode.normal, alpha: 1.0)
UIGraphicsPopContext();
}

func degreesToRadians(_ x:Double) -> Double {
return (M_PI * x / 180.0)
}
}

虽然我不知道实际原因,但是在评论 ctx.rotate(by:)函数时,此问题已得到解决。但这不是我的解决方案,因为图像必须就位。

zoom out
zoom in

最佳答案

请在下面尝试。

override func draw(_ mapRect: MKMapRect, zoomScale: MKZoomScale, in ctx: CGContext) {
DispatchQueue.main.async {
let theMapRect = overlay.boundingMapRect
let theRect = rect(for: theMapRect)
// Rotate around top left corner
ctx.rotate(by: CGFloat(degreesToRadians(plan.bearing)));
// Draw the image
UIGraphicsPushContext(ctx)
overlayImage.draw(in: theRect, blendMode: CGBlendMode.normal, alpha: 1.0)
UIGraphicsPopContext();
}
}

关于swift3 - 放大后,MapView叠加层将被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42138256/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com