假设我有点数组。我想在iphone中绘制那些点的路径。如何做到这一点。到目前为止,我得不到合适的答案。请帮助我。
答案 0 :(得分:4)
有一个很好的例子here
你可以看一下。
答案 1 :(得分:1)
假设你有一个名为coords的CLLocationCoordinate2D数组:
int size = sizeof(coords[0]) / sizeof(coords);
MKPolyline* line = [MKPolyline polylineWithCoordinates:coords count:size];
[mapView addOverlay:line];
答案 2 :(得分:1)
现在我使用Quartz绘制那些点之间的路径。我取两点并在这些点之间画线,依此类推直到数组的末尾,它给出了起点和终点之间的路径。
答案 3 :(得分:0)