1
我已經實施了一種方法,可以繪製2點之間的路線,但路線不在路上。我怎樣才能在路上畫路線?MKMapView路線偏離道路
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];
http://stackoverflow.com/questions/1085749/google-map-route-draw-on-iphone –