ios - 如何获取所选 map 图钉的坐标数据?

标签 ios mkmapview

我正在尝试获取我在 map 上选择的每个图钉的坐标。我有一个问题,我选择的每个引脚都给我相同的值。

在副标题中,我可以看到我选择的每个引脚的值,但是当我将其等于纬度和经度字符串值时,它总是给我相同的值,因此纬度和经度字符串值不会改变。那么请问我的问题出在哪里?

- (void)viewDidLoad{

  CLLocationCoordinate2D annotationCoord;

  annotationPoint.subtitle = [NSString stringWithFormat:@"%f & %f", annotationPoint.coordinate.latitude, annotationPoint.coordinate.longitude];

  //Lat and Lon are FLOAT.

  Lat = annotationPoint.coordinate.latitude;
  Lon = annotationPoint.coordinate.longitude;


  NSLog(@"Lat is: %f and Lon is: %f", Lat, Lon);
}

我这样做是为了到达地址以获取前往 AppleMap 应用程序的方向。我需要我选择的引脚的值。

   - (MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation
{
MKPinAnnotationView *pinAnnotation = nil;

if(annotation != locationMap.userLocation)
{
    static NSString *defaultPinID = @"myPin";

    pinAnnotation = (MKPinAnnotationView *)[locationMap dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
    if ( pinAnnotation == nil )
        pinAnnotation = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID] autorelease];

    pinAnnotation.canShowCallout = YES;


    //instatiate a detail-disclosure button and set it to appear on right side of annotation
    UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [infoButton addTarget:self action:@selector(infoButton:) forControlEvents:UIControlEventTouchUpInside];
    pinAnnotation.rightCalloutAccessoryView = infoButton;
}
return pinAnnotation;
}

LAT 和 LON 的值始终相同。请问我的问题可能出在哪里?

-(void)infoButton:(id)sender{

NSString *str = [NSString stringWithFormat:@"http://maps.apple.com/maps?saddr=%f,%f&daddr=%f,%f", Lat,Lon,lat1,lon1];

NSLog(@"Test %f, %f", Lat, Lon);


NSURL *URL = [NSURL URLWithString:str];

[[UIApplication sharedApplication] openURL:URL];
}

测试解决方案:

-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control{

MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];

CLLocation *pinLocation = [[CLLocation alloc] initWithLatitude:annotationPoint.coordinate.latitude longitude:annotationPoint.coordinate.longitude];

NSLog(@"RESULT: Lat:%@ Long:%@", [[view annotation]coordinate].latitude,[[view annotation]coordinate].longitude);
}

NSLog 结果:LAST: <+0.00000000,+0.00000000> +/- 0.00m (speed -1.00 mps / course -1.00) @ 8/23/13, 10:01:04 AM Standard Time

最佳答案

试试这行代码:

CLLocation *pinLocation = [[CLLocation alloc] initWithLatitude:[(MyAnnotation*)[view annotation] coordinate].latitude longitude:[(MyAnnotation*)[view annotation] coordinate].longitude];

在方法中:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view 
calloutAccessoryControlTapped:(UIControl *)control

希望有帮助!!

关于ios - 如何获取所选 map 图钉的坐标数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18380065/

相关文章:

ios - UITextField - 当应用程序来自后台时键盘不隐藏

ios - 将 podfile 放入项目中。困惑

ios - Apple Maps Location Marker 就像在 Find Friends App 中一样

ios - MKAnnotation 不可见*直到*用户拖动 map

ios - 检查 NSArray 是否包含具有特定属性的对象

ios - 如何使用 Xcode 6 (Swift) 添加引脚(注释)

iphone - 在 UIScrollView 中禁用垂直滚动

iphone - 在 MKMap View 中显示附近的餐馆

iphone - 将跨度值转换为 map View 上的米

ios - 添加注释时 MKMapView 崩溃