码迷,mamicode.com
首页 > 其他好文 > 详细

位置与地图:定位获取设备的位置

时间:2014-10-04 20:27:57      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   使用   ar   strong   文件   

首先加入Core Location框架,能够通过该框架中包括的类,获取设备的地理位置.

使用位置服务时,须要加入coreLocation.framework

#impart <CoreLocation/CoreLocation.h>

注意事项:

1.使用地图服务时,会消耗很多其它的设备电量.因此,在获取到设备的位置后,应该停止定位以节省点亮

2.将位置服务设置为全局变量

.h文件里

#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate,CLLocationManagerDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (strong,nonatomic) CLLocationManager *locationManager;

@end
.m文件里

 //初始化位置服务
    self.locationManager = [[CLLocationManager alloc]init];
    //要求CLLocationManager对象返回所有的信息
    [_locationManager setDistanceFilter:kCLDistanceFilterNone];
    //设置定位经度
    [_locationManager setDesiredAccuracy:kCLLocationAccuracyNearestTenMeters];
    //设置代理;
    _locationManager.delegate = self;
    //開始 实时定位
    [_locationManager startUpdatingLocation];

运行的代理方法

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    CLLocation *newLocation = [locations objectAtIndex:0];
   
    //获取新的经纬度
    CLLocationCoordinate2D coordinate = newLocation.coordinate;
    NSLog(@"经度:%f,纬度:%f",coordinate.longitude,coordinate.latitude);
    [manager stopUpdatingLocation];
   
}
通过模拟器调试自己定义位置.来获取当前位置

bubuko.com,布布扣bubuko.com,布布扣

终于输出的结果是:

bubuko.com,布布扣


位置与地图:定位获取设备的位置

标签:des   style   blog   http   io   使用   ar   strong   文件   

原文地址:http://www.cnblogs.com/blfshiye/p/4006178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!