iphone中如何绘制路线?

发布于 2024-12-17 16:02:55 字数 1436 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

另类 2024-12-24 16:02:55

假设您有一个名为 coords 的 CLLocationCooperative2D 数组:

int size = sizeof(coords[0]) / sizeof(coords);

MKPolyline* line = [MKPolyline polylineWithCoordinates:coords count:size];

[mapView addOverlay:line];

Assuming you have an array of CLLocationCoordinate2D called coords:

int size = sizeof(coords[0]) / sizeof(coords);

MKPolyline* line = [MKPolyline polylineWithCoordinates:coords count:size];

[mapView addOverlay:line];
白首有我共你 2024-12-24 16:02:55

现在我使用 Quartz 来绘制这些点之间的路径。我取两个点并在这些点之间绘制线,依此类推,直到数组的末尾,它给出了起点和终点之间的路线。

Now i use Quartz to draw the path between that points.I take two points and draw line between that points and so on till the end of the array and it gives the route between starting point and end point.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文