我想在谷歌地图上创建20个不同的标记。
当我从RGB设置UIColor时,某些颜色不匹配。
teamColor = [UIColor colorWithRed:255.0/255.0 green:250.0/255.0 blue:229.0/255.0 alpha:1]
marker.icon = [GMSMarker markerImageWithColor:teamColor];
//when i set marker to this colour it's show different i want
当我设置黑色或白色时,它会显示加里。
如何知道哪种颜色支持GMSMarker?
答案 0 :(得分:3)
它支持您想要的任何颜色,但结果您将得不到标记的确切颜色,因为标记是使用一些半透明滤镜和蒙版绘制的。绘制自己的UIImage以获得准确的颜色并将其设置为marker.icon。