美文网首页
CLlocation 的地理位置编码

CLlocation 的地理位置编码

作者: 安米汝 | 来源:发表于2016-12-19 16:32 被阅读99次

    //创建地理编码对象    CLGeocoder *geocoder=[[CLGeocoder alloc]init];    //创建位置    CLLocation *location=[[CLLocation alloc]initWithLatitude:userLocation.location.coordinate.latitude longitude:userLocation.location.coordinate.longitude];        //反地理编码    [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray* _Nullable placemarks, NSError * _Nullable error) {

    //判断是否有错误或者placemarks是否为空

    if (error !=nil || placemarks.count==0) {

    NSLog(@"%@",error);

    return ;

    }

    for (CLPlacemark *placemark in placemarks) {

    //赋值详细地址

    annotoation.title = [NSString stringWithFormat:@"%@%@",placemark.administrativeArea,placemark.locality];

    annotoation.subtitle  =[NSString stringWithFormat:@"%@%@",placemark.subLocality,placemark.name];

    }

    }];

    相关文章

      网友评论

          本文标题:CLlocation 的地理位置编码

          本文链接:https://www.haomeiwen.com/subject/nvutvttx.html