之前的项目用到了高德地图sdk,在此对于定位和逆地理编码,天气查询等功能做一个总结,有什么不正确的地方,欢迎提出来。
使用高德地图,首先需要申请一个key,申请流程按照官网的提示就可以。导入相应的第三方库,申请好key值后,需要在application里配置用户的key值.
[AMapServices sharedServices].apiKey = @"你的key值";
注意:有时候这里设置了key值运行程序还会出现key值为空或者验证失败的提示,我也不知道为什么,不过在viewDidLoad再把这句话写一遍,就可以解决这个问题,如果有人知道原因,还望告诉我一下。
配置了key值我们就可以使用高德提供的功能了。
地图
地图是最基础的功能,展示一个地图也非常简单.
注意设置代理MAMapViewDelegate
@property(nonatomic,strong)MAMapView *mapView;
然后初始化地图
//设置mapView的Frame
//这里的kHeight是我定义的整个屏幕的高度
_mapView = [[MAMapView alloc]initWithFrame:CGRectMake(0, 0,CGRectGetWidth(self.view.bounds), kHeight*0.5)];
//地图视图加到主视图
[self.view addSubview:_mapView];
//地图的缩放
[_mapView setZoomLevel:14.5 animated:YES];
//设置MapView的委托为自己
self.mapView.delegate = self;
到这里我们运行程序就可以看到地图的显示了
定位
定位是用到最多的功能,分为单次定位和持续定位,这里我用的是持续定位。
依旧需要设置代理AMapLocationManagerDelegate
@property (nonatomic,strong) AMapLocationManager *locationManager; @property (nonatomic,assign) CLLocationCoordinate2D currentCoordinate;//用来保存定位到的坐标
开启定位
//是否显示用户的位置
self.mapView.showsUserLocation = YES;
//持续定位
self.locationManager = [[AMapLocationManager alloc] init];
self.locationManager.delegate = self;
//开启持续定位
[self.locationManager startUpdatingLocation];
定位成功会调用
-(void)amapLocationManager:(AMapLocationManager *)manager didUpdateLocation:(CLLocation *)location{
//输出的是模拟器的坐标
CLLocationCoordinate2D coordinate2D = CLLocationCoordinate2DMake(location.coordinate.latitude, location.coordinate.longitude);
_currentCoordinate = coordinate2D;
_mapView.centerCoordinate = coordinate2D;}
定位失败后会调用
-(void)amapLocationManager:(AMapLocationManager *)manager didFailWithError:(NSError *)error{
//定位错误
NSLog(@"定位失败");
NSLog(@"%s, amapLocationManager = %@, error = %@", __func__, [manager class], error);
}
天气
高德同样可以查询天气情况,不过官网的文档写的不够详细,这里给出自己的添加的代码
用天气查询功能需要添加代理AMapSearchDelegate
@property(nonatomic,strong)AMapSearchAPI *search;
因为想通过定位的地点来查询天气,所以在刚刚定位的回调函数里写上天气搜索的代码
//输出的是模拟器的坐标
CLLocationCoordinate2D coordinate2D = CLLocationCoordinate2DMake(location.coordinate.latitude, location.coordinate.longitude);
_currentCoordinate = coordinate2D;
//设置地图的中心点是定位的点
_mapView.centerCoordinate = coordinate2D;
//搜索天气
self.search = [[AMapSearchAPI alloc]init];
self.search.delegate = self;
[self searchDistrictWithName];
查询天气功能是用城市名,所以需要逆地理编码
//搜索天气
- (void)searchDistrictWithName
{
AMapReGeocodeSearchRequest *request = [[AMapReGeocodeSearchRequest alloc] init];
request.location = [AMapGeoPoint locationWithLatitude:_currentCoordinate.latitude longitude:_currentCoordinate.longitude];
//逆地理编码搜索请求
[_search AMapReGoecodeSearch:request];
}
//实现逆地理编码的回调函数
- (void)onReGeocodeSearchDone:(AMapReGeocodeSearchRequest *)request response:(AMapReGeocodeSearchResponse *)response
{
if(response.regeocode != nil)
{
//通过AMapReGeocodeSearchResponse对象处理搜索结果
//NSString *result = [NSString stringWithFormat:@"ReGeocode: %@", response.regeocode.formattedAddress];
NSString *cityStr = [NSString stringWithFormat:@"%@",response.regeocode.addressComponent.city];
//NSLog(@"%@",cityStr);
//查询天气
AMapWeatherSearchRequest *request = [[AMapWeatherSearchRequest alloc] init];
request.city = cityStr;
request.type = AMapWeatherTypeLive; //AMapWeatherTypeLive为实时天气;AMapWeatherTypeForecase为预报天气
[self.search AMapWeatherSearch:request];
}
}
同样有相应的回调函数
- (void)onWeatherSearchDone:(AMapWeatherSearchRequest *)request response:(AMapWeatherSearchResponse *)response{
//如果是实时天气
if(request.type == AMapWeatherTypeLive)
{
if(response.lives.count == 0)
{
return;
}
for (AMapLocalWeatherLive *live in response.lives) {
NSLog(@"区域编码:%@",live.adcode);
NSLog(@"省份:--%@",live.province);
NSLog(@"城市:--%@",live.city);
NSLog(@"天气:--%@",live.weather);
NSLog(@"实时温度:--%@",live.temperature);
NSLog(@"风向:--%@",live.windDirection);
NSLog(@"风力:--%@",live.windPower);
NSLog(@"空气湿度:--%@",live.humidity);
NSLog(@"发布时间:--%@",live.reportTime);
}
}
//如果是预报天气
else
{
if(response.forecasts.count == 0)
{
return;
}
for (AMapLocalWeatherForecast *forecast in response.forecasts) {
NSLog(@"====%@",forecast);
}
}}
查询失败时候的回调
//检索失败时候回调
- (void)AMapSearchRequest:(id)request didFailWithError:(NSError *)error{
NSLog(@"Error: %@", error);}
注意:模拟器无法正确定位,如果想要定位的话可以通过虚拟坐标,即调出模拟器,然后debug菜单里的location里的custom location,可以输入相应的经纬度。
代码比较粗糙,但也实现包含地图,定位,查询天气在内的基本功能,希望可以给同样是新手的朋友们一些帮助。