1

我正在尝试从 json 在地图上显示信息,但没有任何反应 我认为缺少某些信息,因此可以在地图上显示信息创建 nsdictionary 和数组,以便我可以在 mapview 上显示信息。这是迄今为止我与阵列的战争:

NSData *data =[NSData dataWithContentsOfURL:[NSURL URLWithString:@"URL"]];

NSMutableDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];

NSLog(@"Datos Obtenidos:\n%@",dict);
NSDictionary *cortes;
NSError* error;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:data
                                                     options:kNilOptions
                                                       error:&error];
NSMutableArray *jsonCheckins = [NSMutableArray array];
for(NSDictionary *jsonElement in jsonArray){
    InitViewController *checkin = [InitViewController checkinFromDictionary:jsonElement];
    [jsonCheckins addObject:checkin];
}

设法添加此代码,但地图视图上仍未​​显示信息:

- (CLLocationCoordinate2D) checkinCoordinate { 
   CLLocationCoordinate2D coordinate;
   coordinate.latitude = self.checkin.latitud;
   coordinate.longitude = self.checkin.longitud;
   return coordinate;}

- (void)showCheckinAnnotation { 
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = [self checkinCoordinate];
annotationPoint.title = self.checkin.type;
annotationPoint.subtitle = self.checkin.description;
[self.mapView addAnnotation:annotationPoint];}

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
MKAnnotationView *annotationView= nil;
if(annotation != mapView.userLocation) {
static NSString *annotationViewId = @"annotationViewId";
annotationView = (MKAnnotationView *)[mapView         
dequeueReusableAnnotationViewWithIdentifier:annotationViewId];
if (annotationView == nil) {
    annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationViewId];
       }
   }
 return annotationView;}
4

1 回答 1

2

我们看不到您的checkinFromDictionary,因此我们很难发表评论,因为我们从未见过您设置此self.checkin属性,但这令人担忧。但是我们需要看到更多的代码来进一步评论。

但是,为了演示,这里有一个查找并添加所有注释的方法,不会发生意外:

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.buenosairescortes.com.ar/capitalfederalcortes/getCortes.php"]];

NSError *error;
NSArray *array = [NSJSONSerialization JSONObjectWithData:data
                                                options:0
                                                  error:&error];

if (error)
{
    NSLog(@"%s: error=%@", __FUNCTION__, error);
    return;
}

for (NSDictionary *dictionary in array)
{
    MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
    annotation.coordinate = CLLocationCoordinate2DMake([dictionary[@"latitude"] doubleValue],
                                                       [dictionary[@"longitude"] doubleValue]);
    annotation.title = dictionary[@"type"];
    annotation.subtitle = dictionary[@"description"];
    [self.mapView addAnnotation:annotation];
}

(顺便说一句,我使用的是CLLocationCoordinate2dMake方法,它是 的一部分CoreLocation.framework,但您也可以使用您的方法。)

就您而言viewForAnnotation,这似乎没有必要,因为您似乎没有做任何默认情况下不会做的事情。但是让我们假设您想要它(因为也许您正计划进一步定制该方法)。

您提供的例程存在两个问题:

  • 您正在创建一个除非您设置它(或在设置它的类中子类化它),MKAnnotationView否则它不会做任何事情。如果您只想要标准引脚,请改用。imageimageMKPinAnnotationView

  • 一个更微妙的问题是,如果注释视图成功出列,则不会重置其注释。因此,我建议在else该声明中包含一个子句if (annotation == nil)

因此,这会产生:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    MKAnnotationView *annotationView= nil;
    if (![annotation isKindOfClass:[MKUserLocation class]])
    {
        static NSString *annotationViewId = @"annotationViewId";
        annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:annotationViewId];
        if (annotationView == nil)
        {
            annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationViewId];
        }
        else
        {
            annotationView.annotation = annotation;
        }
    }
    return annotationView;
}

此方法还通过以下方式检查注解类是否不是成员

if (![annotation isKindOfClass:[MKUserLocation class]])
{
    // do annotation stuff here
}

代替

if (annotation != mapView.userLocation)
{
    // do annotation stuff here
}

这是 Apple 在其Location Awareness Programming Guide中描述的方法,因此它可能更安全。通常,检查两个对象之间的相等性并不完全可靠(也许您在这里很幸运,但通常并不谨慎)。支持比较操作的对象通常具有以 . 为前缀的相等方法isEqual。话虽如此,在这里检查班级成员资格就足够了。

于 2013-05-02T03:56:25.490 回答