查找坐标是否位于给定折线中的最佳实践?
对于导航应用程序,我需要检测用户何时偏离给定的驾驶路径(表示为坐标列表),所以我想要做的是每当我为用户获得新的位置更新时,我都会检查该位置是否在路径中。 是不是太复杂了?
For a navigation app, i need to detect when the user deviated from a given driving path(represented as a list of coordinates), so what i want to do is whenever i get a new location update for the user, ill check if this location is in the path.
is that too complicated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于类似的问题,我使用 CGPath 创建一条路径,然后测试路径中是否有一个点。通过控制路径宽度,您可以相当轻松地确定偏差量。
以下是示例代码,用于测试触摸事件中的锥体:
For a similar problem I create a path with CGPath and then test if a point is in the path. By controlling the path width you can the amount of deviation rather easily.
Here is example code, the point to test cones from a touch event: