我的地图上有 200 多个点,其中很多在运行时被隐藏,直到放大倍数增加。是否有一个布尔函数或其他来解决这个问题?
问问题
26 次
1 回答
0
您需要在视图控制器之外创建注释视图类并将其更改为 displayPriority = .required
class annotationView: MKMarkerAnnotationView {
override var annotation: MKAnnotation? {
willSet {
guard let "arrayOfAnnotations" = "newValue" as? "annotationClass" else {
return
}
self.displayPriority = .required
}
}
}
于 2020-12-01T17:12:59.380 回答