gpt4 book ai didi

swift - MapView viewForAnnotation 在圆圈中显示白色图钉(默认)

转载 作者:行者123 更新时间:2023-11-28 13:45:53 27 4
gpt4 key购买 nike

当我没有在 MKMapView 上设置委托(delegate)而是添加注释时,它们的图像如下所示:

Default view

但是,如果我像这样返回一个 MKAnnotationView:

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if annotation.isKind(of: MKUserLocation.self) {
return nil
}

guard annotation is MKPointAnnotation else { return nil }

let identifier = "Annotation"
var annotationView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier)

if annotationView == nil {
annotationView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: identifier)
annotationView!.collisionMode = .circle
annotationView!.canShowCallout = true
} else {
annotationView!.annotation = annotation
}

return annotationView
}

然后图标看起来像一个垂直的图钉:

customised

我知道我可以在 MKAnnotationView 上使用自定义图像。但是,我想要默认的,除了我希望它看起来像第一个而不是第二个,但我也想自定义标注。我怎样才能做到这一点?

最佳答案

第一张图片属于 MKMarkerAnnotationView。所以要求它,而不是 MKPinAnnotationView。

关于swift - MapView viewForAnnotation 在圆圈中显示白色图钉(默认),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55388422/

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