如何在地图视图中绘制路线当用户不断移动时

时间:2012-09-03 05:42:52

标签: iphone ios xcode map mapkit

我正在开发一款App,我需要根据用户动作在地图上绘制路线。我已经搜索过了,但是得到了任何令人满意的解决方案。需要帮助!

1 个答案:

答案 0 :(得分:-1)

看到这个链接希望可能有用

<强> https://github.com/kadirpekel/MapWithRoutes

或使用此代码

NSArray *points = [NSArray arrayWithObjects: [[[CLLocation alloc] initWithLatitude:location.latitude longitude:location.longitude] autorelease],nil]; NVPolylineAnnotation *annotation = [[[NVPolylineAnnotation alloc] initWithPoints:points mapView:map] autorelease]; [map addAnnotation:annotation]; [loc release];