gpt4 book ai didi

ios - 自定义 map 注释

转载 作者:行者123 更新时间:2023-11-30 11:28:50 25 4
gpt4 key购买 nike

我已经让我的所有引脚都具有可重复使用的图像作为其图像,但是我不希望用户位置的引脚具有此图像,我只想要默认的蓝色圆圈。我有办法做到这一点吗?下面是我用来为引脚创建自定义图像的代码。

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
let annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: "Drops")
annotationView.image = UIImage(named: "annotationPin")
let transform = CGAffineTransform(scaleX: 0.5, y: 0.5)
annotationView.transform = transform
return annotationView
}

最佳答案

如果注释是MKUserLocation,则返回nil

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

关于ios - 自定义 map 注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50464544/

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