2012-04-12 53 views

回答

1

是,使一個NSMutableArray位置座標(緯度,經度)是這樣的:

[arrayOfDesc addObject:[ 
         [CLLocation alloc] initWithLatitude:location.coordinate.latitude longitude:location.coordinate.longitude]]; 

,然後使用類從這個source code。使用'NVPolylineAnnotation'和'NVPolylineAnnotationView'類。並通過一個方法傳遞你的數組:

NVPolylineAnnotation *annotations = [[NVPolylineAnnotation alloc] initWithPoints:arrayOfDesc mapView:_mapView]; 
[_mapView addAnnotation:annotations]; 

它非常簡單,你只需要通過座標類,則提到的類做休息:)

相關問題