Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在图像上的 2 个位置之间绘制一条路线并跟踪路线(不在 mapkit 中)
我怎样才能做到这一点?有没有库或框架?
我想显示两点之间的路线图。
像这样:
您可以使用CGPath来存储路线。您可以使用 aCGContext作为您的画布。将图像绘制到上下文中,然后绘制路径。您可以在绘制路径之前设置颜色和线条属性,如角样式。
CGPath
CGContext
一旦你有了这个,你可以将它设置为图层的内容或将其保存为要显示的新图像。
路径绘制指南
对于路线生成,看看A* 算法,做一点谷歌搜索,可能是这样的。