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