iOS MapKit:选定的MKAnnotation坐标

时间:2010-12-21 20:52:34

标签: ipad ios mapkit mkannotation

使用以下教程http://www.zenbrains.com/blog/en/2010/05/detectar-cuando-se-selecciona-una-anotacion-mkannotation-en-mapa-mkmapview/中的代码,我能够为每个MKAnnotation添加一个观察者,并接收选定/取消选择状态的通知。

我正在尝试在选择注释的顶部添加UIView以显示有关该位置的相关信息。此信息无法在引脚标注的2行(标题/字幕)中传达。

- (void)observeValueForKeyPath:(NSString *)keyPath
                      ofObject:(id)object
                        change:(NSDictionary *)change
                       context:(void *)context {

    Annotation *a = (Annotation *)object;
    // Alternatively attempted using:
    //Annotation *a = (Annotation *)[mapView.selectedAnnotations objectAtIndex:0];


    NSString *action = (NSString *)context;
    if ([action isEqualToString:ANNOTATION_SELECTED_DESELECTED]) {
        BOOL annotationSelected = [[change valueForKey:@"new"] boolValue];
        if (annotationSelected) {
            // Actions when annotation selected
            CGPoint origin = a.frame.origin;
            NSLog(@"origin (%f, %f) ", origin.x, origin.y);

            // Test
            UIView *v = [[UIView alloc] init];
            [v setBackgroundColor:[UIColor orangeColor]];
            [v setFrame:CGRectMake(origin.x, origin.y , 300, 300)];
            [self.view addSubview:v];
            [v release];
        }else {
            // Accions when annotation deselected
        }
    }
}

使用Annotation *a = (Annotation *)object

的结果
origin (154373.000000, 197135.000000) 
origin (154394.000000, 197152.000000) 
origin (154445.000000, 197011.000000) 

使用Annotation *a = (Annotation *)[mapView.selectedAnnotations objectAtIndex:0];

的结果
origin (0.000000, 0.000000) 
origin (0.000000, 0.000000) 
origin (0.000000, 0.000000) 

数字很大。它们与视图无关(1024 x 768)。我相信它们与整个地图相关。我如何能够检测到相对于整个视图的精确坐标,以便我可以正确定位我的视图?

注意:

刚刚发现这两种方法可以在更简单的实现中完成与上面代码相​​同的操作。

选择注释视图

– mapView:didSelectAnnotationView:
– mapView:didDeselectAnnotationView:

http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKMapViewDelegate_Protocol/MKMapViewDelegate/MKMapViewDelegate.html

2 个答案:

答案 0 :(得分:3)

不要使用.frame.origin,而是尝试获取MKAnnotation的{​​{1}}属性。使用此coordinate,您可以使用coordinate的{​​{1}}来获取注释的来源。

希望这有帮助!

答案 1 :(得分:0)

Apple's sample app WeatherMap具有自定义注释并显示如何定位它们。代码很简单,值得推荐。