我正在尝试让我的MKPolyline显示,我认为我几乎所有的东西都是正确的,但我肯定遗漏了一些东西。没有错误代码,否则地图显示得很好,我可以很好地丢弃注释引脚。
the .h
@interface SatFinderViewController: UIViewController
<MKMapViewDelegate>
{
IBOutlet MKOverlayView *mapView;
IBOutlet MKMapView *map;
MKMapView *_mapView;
MKPolyline *_routeLine;
MKPolylineView *_routeLineView;
}
@property (nonatomic, retain) IBOutlet MKMapView *map;
@property (nonatomic, retain) MKAnnotationView *mapAView;
@property (nonatomic, retain) MKOverlayView *mapView;
@property (nonatomic, retain) MKPolyline *routeLine;
@property (nonatomic, retain) MKPolylineView *routeLineView;
-(void)calculate;
-(void)loadRoute;
@endThe .m
-(void)calculate
{ ...
[map removeOverlay:self.routeLine];
self.routeLine = nil;
[self loadRoute];
[map addOverlay:routeLine];
[map setNeedsDisplay];
}
-(void) loadRoute
{
SatFinderAppDelegate *appdel = (SatFinderAppDelegate *)[[UIApplication sharedApplication]delegate];
float s = [appdel.location floatValue];
CLLocationCoordinate2D *locations = malloc(sizeof(CLLocationCoordinate2D) * 2);
CLLocationCoordinate2D satcoord = CLLocationCoordinate2DMake(0, s);
CLLocationCoordinate2D dishcoord = CLLocationCoordinate2DMake(pinlat, pinlon);
locations[0] = satcoord;
locations[1] = dishcoord;
NSLog(@"satcoord %f,%f", locations[0].latitude, locations[0].longitude);
NSLog(@"dishcord %f,%f", locations[1].latitude, locations[1].longitude);
// Create the polyline based on the array of points.
routeLine = [MKPolyline polylineWithCoordinates:locations count:1];
[routeLineView setNeedsDisplay];
}
- (MKOverlayView *)mapView:(MKMapView *)map viewForOverlay:(id <MKOverlay>)overlay
{
routeLineView = [[MKPolylineView alloc] initWithPolyline:self.routeLine];
routeLineView.fillColor = [UIColor blueColor];
routeLineView.strokeColor = [UIColor blueColor];
routeLineView.lineWidth = 5;
return routeLineView;
}发布于 2012-06-05 17:05:02
routeLine = [MKPolyline polylineWithCoordinates:locations count:1]; 应该是"count:2“而不是"count:1”
https://stackoverflow.com/questions/10860333
复制相似问题