MKMapView的折线不起作用

时间:2016-11-15 22:31:38

标签: objective-c mkmapview mkpolyline

我一直在努力尝试让这个多边形线在Objective C中工作。我已经完成了我能找到并且无处可寻的每个教程,我看不出它有什么问题。

    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

2 个答案:

答案 0 :(得分:2)

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

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

答案 1 :(得分:0)

我目前不在Mac上,所以我无法运行你的代码,但看起来你已经创建了MKPolyline,但是你错过了 MKPolylineView 。 / p>

_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;
}