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

Mat*_*att 4 mapkit ios

我已经在网上搜索过,并没有找到一种方法来定制用户在地图上的位置周围的蓝色脉冲环的颜色.

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

Iva*_*and 9

用户位置的蓝色基于地图视图的色调颜色,更改此颜色将为用户位置圆设置新颜色.

//Objective-C 
mapView.tintColor = [UIColor redColor];

//Swift 4.2
mapView.tintColor = UIColor.red
Run Code Online (Sandbox Code Playgroud)