改变用户位置周围的脉冲蓝色环的颜色

我search了网页,还没有find一种方法来定制用户在地图上的位置周围的蓝色脉冲环的颜色。

有谁知道一种方法来定制脉冲环的颜色?

这个开源项目可能是有用的:

https://github.com/samvermette/SVPulsingAnnotationView

用户位置的蓝色是基于地图视图的色彩颜色,更改此设置将为用户位置圆圈设置新的颜色。

//Objective-C mapView.tintColor = [UIColor redColor]; //Swift mapView.tintColor = redColor() //Swift 3 mapView.tintColor = UIColor.red 

在Swift 3

 mapView.tintColor = UIColor.red 

或使用颜色文字

在这里输入图像说明