IOS 系统基站定位

本文介绍了一个iOS应用中实现定位功能的具体方法。通过使用CLLocationManager来启动定位更新,并在定位成功后利用CLGeocoder进行地址解析,实现了从经纬度获取详细地址的需求。文中还展示了如何在Swift中设置定位精度及距离过滤器。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
  *  初始化定位
  */
- (void)paepareLocation {
     self.locationManager = [[CLLocationManager alloc] init];
     self.locationManager.delegate = self;
     self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
     self.locationManager.distanceFilter = kCLLocationAccuracyThreeKilometers;
     [self.locationManager startUpdatingLocation];
     self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
}
 
/**
  *  定位成功
  */
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
     
     [self.locationManager stopUpdatingLocation];
     [self.locationManager stopUpdatingLocation];
     CLGeocoder *geocoder = [[CLGeocoder alloc] init];
     CLLocation *location = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude
                                                       longitude:newLocation.coordinate.longitude];
     
     [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
         if (error){
             NSLog(@"error: %@", error);
             return;
         }
         NSLog(@"定位成功");
         CLPlacemark *placemark1 = [placemarks objectAtIndex:0];
         [self showData:placemark1.addressDictionary];
         
     }];
     NSLog(@"firstviewctroller 定位成功latitude = %f",newLocation.coordinate.latitude);
     NSLog(@"longitude = %f",newLocation.coordinate.longitude);
   
     _longitude = [NSString stringWithFormat:@"%f",newLocation.coordinate.longitude];
     _latitude = [ NSString stringWithFormat:@"%f",newLocation.coordinate.latitude];
 
 
}
 
/**
  *  显示定位信息
  *
  *  @param dic 位置数据
  */
-(void)showData:(NSDictionary *)dic
{
     _addressLabel.text =[NSString stringWithFormat:@"%@",[dic objectForKey:@"City"]];
     NSArray *array = [dic objectForKey:@"FormattedAddressLines"];
     NSString *str8 =[NSString stringWithFormat:@"%@",[array objectAtIndex:0]];
     
     NSLog(@"FormattedAddressLines = %@",str8);
 
}


转载于:https://my.oschina.net/lewis180/blog/343071

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值