2016-11-15 63 views
1

我一直在尝试并试图让这个多义线在Objective C中工作。我已经经历了每一个我可以找到并得到的教程,我无法看到它有什么问题。Polyline for MKMapView不能正常工作

CLLocationCoordinate2D coordinateArray2[2]; 
coordinateArray2[1].longitude = 176.8773669; 
coordinateArray2[0].longitude = 176.88151896; 
coordinateArray2[0].latitude = -39.668593; 
coordinateArray2[1].latitude = -39.67018069; 
_route1Line = [MKPolyline polylineWithCoordinates:coordinateArray2 count:2]; 
[_GPSView setDelegate:self]; 
[_GPSView addOverlay:_route1Line]; 
_testlabel.text = [NSString stringWithFormat:@"%f", coordinateArray2[0].longitude]; 

任何人都可以看到什么是错的?

头:

#import <UIKit/UIKit.h> 
#import <MapKit/MapKit.h> 


extern int routenumber; //holds current route ID 

extern BOOL inRoute; //holds if on route or not 

extern int followYou; //holds if the app should follow the user or predefined coordinates 

extern NSArray *routeHolder; //holds array of routes 

@interface ViewController : UIViewController <MKMapViewDelegate> 

@property (weak, nonatomic) IBOutlet MKMapView *GPSView; //adding the map view to the controller 

@property (nonatomic, retain) MKPolyline *route1Line; //line for this route 

@property (weak, nonatomic) IBOutlet UILabel *testlabel; 

@end 
+0

对不起,忽略注释 – Jobalisk

回答

1

您应该实现的MKMapViewDelegate下面的方法:

- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay 
{ 
    MKOverlayPathRenderer *theOverlayPathRenderer; 
    { 
     theOverlayPathRenderer = [[MKPolylineRenderer alloc] initWithPolyline:overlay]; 
     theOverlayPathRenderer.lineWidth = ...; 
     theOverlayPathRenderer.fillColor = ...; 
     theOverlayPathRenderer.strokeColor = ...; 
    } 
    return theOverlayPathRenderer; 
} 
0

我不是在一台Mac的时刻,所以我不能运行你的代码,但它看起来像您已经创建了MKPolyline好的,但你错过了MKPolylineView

_polylineView = [MKPolylineView alloc] initWithPolyline:route1Line]; // Declare it in your header file or in the implementation's interface. 
_polylineView.strokeColor = [UIColor redColor]; 
_polylineView.lineWidth = 5.0 

然后确保你符合MKMapViewDelegate和实施的MapView:viewForOverlay

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay { 
    return _polylineView; 
} 
+0

您建议使用已弃用的方法,更好地查看我的答案 – OlDor