iOS MKPolygon模式

时间:2018-12-14 07:46:05

标签: ios mapkit mkpolygon

我在互联网上进行搜索,但找不到答案。可以绘制填充有某种图案的多边形吗?我不想使用第三方图书馆。我想要实现类似于以下内容: polygon with pattern

1 个答案:

答案 0 :(得分:0)

是的,您可以这样做。

library(dplyr) library(lubridate) df %>% group_by(Customer_ID) %>% mutate(Trans_DateTime = ymd_hms(Trans_DateTime)) %>% filter(Trans_DateTime < (min(Trans_DateTime) + months(2))) %>% count() # Customer_ID n # <chr> <int> #1 A 2 #2 B 3 具有用于图案图像的初始化程序。

UIColor

然后在叠加层渲染器委托方法中,只需将其分配给填充颜色即可。

guard let image = UIImage(named: "Name of the asset") else { return }
let color = UIColor(patternImage: image)