1

我已经实现了一种在 2 点之间绘制路线的方法,但是路线偏离了道路。如何仅在道路上绘制路线?

coordinateArray[0] = CLLocationCoordinate2DMake(appDelegate.latitude, appDelegate.longitude);
coordinateArray[1] = CLLocationCoordinate2DMake(appDelegate.latitude2, appDelegate.longitude2); 

self.routeLine = [MKPolyline polylineWithCoordinates:coordinateArray count:2];
[self.myMapView setVisibleMapRect:[self.routeLine boundingMapRect]]; 
[self.myMapView addOverlay:self.routeLine];
4

1 回答 1

0

这非常有帮助((:MKPolyline with Google Maps API https://github.com/Surya121/SBMapWithRoute

于 2013-01-09T16:07:00.307 回答