マップ アノテーションを使用したい データがある plist リストがあり、アノテーションを使用してマップ上にデータを表示したい。デモの例 MapCallsout がありますが、地図上の plist を読む必要がありますか?
質問する
1189 次
2 に答える
1
Here's the sample for retrieving data from plist file, the data will store into NSArray
. You can show annotations using this array.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *fooPath = [documentsPath stringByAppendingPathComponent:@"yourPlistFile.plist"];
NSLog(fooPath);
NSArray *contentArray = [NSArray arrayWithContentsOfFile:fooPath];
NSLog(@"%@",contentArray);
于 2012-08-28T09:03:22.740 に答える
0
最初に Plist からすべての場所を取得し、それらを配列に入れます。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *fooPath = [documentsPath stringByAppendingPathComponent:@"yourPlistFile.plist"];
NSLog(fooPath);
NSArray *contentArray = [NSArray arrayWithContentsOfFile:fooPath];
NSLog(@"%@",contentArray);
以下のコードを使用して、マップに複数の注釈を表示します。
NSMutableArray *toRemove = [NSMutableArray arrayWithCapacity:10];
for (id annotation in yourMapView.annotations)
if (annotation != yourMapView.userLocation)
[toRemove addObject:annotation];
[yourMapView removeAnnotations:toRemove];
yourMapView.delegate = self;
[yourMapView setMapType:MKMapTypeStandard];
MKCoordinateRegion region;
MKCoordinateSpan span;
span.latitudeDelta=0.2;
span.longitudeDelta=0.2;
LocationClass *locationData=[[LocationClass alloc]init];
for (int k=0; k<contentArray.count; k++) {
locationData=[contentArray objectAtIndex:k];
CLLocationCoordinate2D location;
region.span = span;
region.center = location;
location.latitude =[locationData.latitude doubleValue];
location.longitude = [locationData.longitude doubleValue];
AnnView *mapPoint = [[AnnView alloc] initWithLocation:location];
mapPoint.title=[NSString stringWithFormat:@"%@ @",locationData.Title];
mapPoint.subtitle=[NSString stringWithFormat:@"%@ ",locationData.Subtitle];
[yourMapView addAnnotation:mapPoint];
mapPoint = nil;
[yourMapView setRegion:region animated:YES];
[yourMapView regionThatFits:region];
}
[self zoomToFitMapAnnotations:yourMapView];
次に、以下のコードのようなデリゲート メソッドを記述します。
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
MKAnnotationView * annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"annot"];
if (!annotationView) {
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"annot"] ;
annotationView.canShowCallout = YES;
}
else {
annotationView.annotation = annotation;
}
annotationView.image = [UIImage imageNamed:@"pinimage.png"];
return annotationView;
}
于 2012-08-28T09:34:21.450 に答える