地図上の複数の住所や場所にピンを設定し、そのピンポイント間に線を引きたい。ピンとラインがマップに表示されます。ある場所のピンのみを表示するコードを見つけました..ここに私のコードがあります。.
- (void)viewDidLoad {
[super viewDidLoad];
mapView.delegate=self;
NSMutableArray* annotations=[[NSMutableArray alloc] init];
for (int i =1; i <=10; i++) {
CLLocationCoordinate2D theCoordinate1;
if (i==1) {
theCoordinate1.latitude = 37.786996;
theCoordinate1.longitude = -122.419281;
}
if (i==2) {
theCoordinate1.latitude = 37.810000;
theCoordinate1.longitude = -122.477989;;
}
if (i==3) {
theCoordinate1.latitude = 37.80000;
theCoordinate1.longitude = -122.407989;
}
if (i==4) {
theCoordinate1.latitude = 37.82000;
theCoordinate1.longitude = -122.407989;
}
MyAnnotation* myAnnotation1=[[MyAnnotation alloc] init];
myAnnotation1.coordinate=theCoordinate1;
[mapView addAnnotation:myAnnotation1];
[annotations addObject:myAnnotation1];
}
MKMapRect flyTo = MKMapRectNull;
for (id <MKAnnotation> annotation in annotations) {
MKMapPoint annotationPoint = MKMapPointForCoordinate(annotation.coordinate);
MKMapRect pointRect = MKMapRectMake(annotationPoint.x, annotationPoint.y, 0, 0);
if (MKMapRectIsNull(flyTo)) {
flyTo = pointRect;
} else {
flyTo = MKMapRectUnion(flyTo, pointRect);
}
}
mapView.visibleMapRect = flyTo;
}
のこの点の間に線を引きたい。そして最終的にはパスのように見え、ピンはこのパスまたはライン上に立っています。よろしくお願いします。