作者:卓慧大美女_502 | 来源:互联网 | 2023-01-13 11:47
我一直在尝试新的iOS 11 MKMarkerAnnotationView,最后聚类就像魅力一样.但问题是群集的颜色错误,如图所示.我该怎么控制呢?
1> Anders Frohm..:
没关系,我设法搞清楚了.
我mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation)
在委托的功能中添加了以下内容.
if let cluster = annotation as? MKClusterAnnotation {
let markerAnnotatiOnView= MKMarkerAnnotationView()
markerAnnotationView.glyphText = String(cluster.memberAnnotations.count)
markerAnnotationView.markerTintColor = UIColor.appPrimary
markerAnnotationView.canShowCallout = false
return markerAnnotationView
}