1

我在我的应用程序中使用 SKMaps,并通过更改 SKMaps.bundle 中的 png 文件设法更改了当前位置指示器的颜色(默认为蓝色)。现在我希望 AccuracyCircle 的颜色与我的自定义位置指示器的颜色相匹配。看起来精度圈是在 .m 文件(我没有,因为它是 SKMaps.framework)中创建的代码(所以不是 png 文件),并且似乎没有任何类型的设置来更改颜色。有谁知道改变它的方法吗?

4

1 回答 1

0

使用 SKMapSettings 中的orientationIndicatorType属性:

/** The orientation indicator type, used when SKMapFollowerModePositionPlusHeading follower is active. If SKOrientationIndicatorCustomImage is set, the "heading.png" image file from the style's resources will be used. 
 */ 
@property(nonatomic, assign) SKOrientationIndicatorType orientationIndicatorType;
于 2015-01-19T10:12:30.827 回答