2

iPhone 新手来自 Java。所以我在这个阶段的目标是允许用户在地图上“放置一个图钉”。我的地图初始化如下所示:

- (void)viewDidLoad {
    [super viewDidLoad];
     NSLog(@"your view did load, I'm going to initizlie the map by your location");
     CLLocationCoordinate2D location = theMap.userLocation.coordinate;
     NSLog(@"Location found from Map: %f %f",location.latitude,location.longitude);

     MKCoordinateRegion region;
     MKCoordinateSpan span;

     NSLog(@"coordinates: %f %f",location.latitude,location.longitude);
     if (TARGET_IPHONE_SIMULATOR) {
         NSLog(@"You're using the simulator:");
         location.latitude  =  40.8761620;
         location.longitude = -73.782596;
     } else {
         location.latitude  =  theMap.userLocation.location.coordinate.latitude;
         location.longitude =  theMap.userLocation.location.coordinate.longitude;
     }

     span.latitudeDelta = 0.001;
     span.longitudeDelta = 0.002;

     region.span = span;
     region.center = location;

     [theMap setRegion:region animated:YES];
     [theMap regionThatFits:region];
     [theMap setMapType:MKMapTypeSatellite]; 
     [theMap setZoomEnabled:YES];
     [theMap setScrollEnabled:YES];
     [theMap setShowsUserLocation:YES];
}

对于请求的针脚,我有

- (MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation {
    MKPinAnnotationView *pinView = nil;
    if (annotation != theMap.userLocation) {
        static NSString *defaultPinID = @"aPin";
        pinView = (MKPinAnnotationView *)[theMap dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
    if (pinView == nil)
        pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID] autorelease];
    } else {
    }
    pinView.pinColor = MKPinAnnotationColorRed;
    pinView.canShowCallout = YES;
    pinView.animatesDrop = YES;
    return pinView;
}

我不确定我是否完全理解此地图 (theMap) 对 pin 的作用viewForAnnotation?我的意思是,用户执行什么操作会激活该viewForAnnotation方法?此代码不起作用,我不确定为什么。

我正在使用模拟器,所以我不确定是否有我应该按下的按钮或Alt click它?

4

2 回答 2

2

我不确定我是否完全理解此地图 (theMap) 如何用于 viewForAnnotation 中的引脚?

MKPinAnnotationView只是另一种注解视图——也就是说,您向MKAnnotation地图添加注解(符合协议的对象)。当地图想要显示注解时(可能是因为用户滚动地图以使注解在视图中),它会要求您提供用于表示注解的视图。此时,您的mapView:viewForAnnotation:方法可以获取或创建一个 pin 注释视图并将其返回。用户不直接做任何事情来触发mapView:viewForAnnotation:,除了滚动或缩放。

如果您希望用户能够放下图钉,那是另一回事。您需要提供MKPinAnnotationView他们可以拖动的视图(甚至可能是 )。当他们表示想要放下图钉(可能是通过抬起手指)时,您可以移除视图并在该点添加适当的注释。然后mapView:viewForAnnotation:地图视图将通过调用其委托的方法来要求您提供一个表示注释的视图。

此代码不起作用,我不确定为什么。

您是否在地图上添加了任何注释?如果是这样,您是否正在查看应该显示它们的地图部分?

我猜您正在查看该animatesDrop属性并期望它进行整个用户的 pin-dropping 交互。它不这样做。将该属性设置为YES仅在图钉出现在地图上时对其进行动画处理。

于 2013-04-22T19:14:31.673 回答
1

好的,过了一会儿,我明白出了什么问题:

theMap.delegate = (id) self;

在构造函数中丢失了。一旦我这样做了,最终用户的任何操作都会激活地图的其他方法(协议)。

于 2013-04-25T21:14:45.527 回答