前言
之前公司老板看上人家美团的这个效果,要在我们公司项目里选择地址的时候也用这种方法就研究了下,但是人家这个是用来精准定位的,我们一个电商APP老板非要这样做,结果并没有多大的卵用。我们先看个效果图。
集成高德地图SDK
(1) 去高德地图开放平台添加你的应用,然后申请appkey;
(2) 按照开发文档下载SDK到自己的项目中集成;
(3) 在AppDelegate.m的didFinishLaunchingWithOptions方法中设置appkey,现在的版本只需用如下方法设置:
[AMapServices sharedServices].apiKey = @"你的key";
初始化相关控件
1.初始化MAMapView地图控件和AMapSearchAPI搜索控服务
search = [[AMapSearchAPI alloc] init];
search.delegate = self;//初始化
mapViewmyMapView = [[MAMapView alloc] initWithFrame:CGRectMake(0, 64, allScreen.width, (allScreen.height - 64) / 2)];
myMapView.mapType = MAMapTypeStandard; //地图类型 普通地图|卫星地图myMapView.showsCompass = NO; //是否显示罗盘
myMapView.showsScale = NO; //是否显示比例尺
myMapView.delegate = self;[myMapView setZoomLevel:17.5 animated:YES]; //设置当前地图的缩放级别
myMapView.userTrackingMode = MAUserTrackingModeFollow; //追踪用户的location更新
myMapView.showsUserLocation = YES; //是否显示用户位置//高德地图logo位置, 必须在mapView.bounds之内,否则会被忽略(这里设置的右下角)
myMapView.logoCenter = CGPointMake(myMapView.frame.size.width - 40, myMapView.frame.size.height - 10);
//地图中心那个图标
poiView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"map_point_r"]];
poiView.frame = CGRectMake(0, 0, 30, 30);
poiView.center = CGPointMake([UIScreen mainScreen].bounds.size.width/2, (myMapView.frame.size.height - 30) / 2);
[myMapView addSubview:poiView];
2.管理MAMapView的生命周期
- (void)viewWillAppear:(BOOL)animated {
myMapView.delegate = self;
}
- (void)viewDidDisappear:(BOOL)animated {
myMapView.delegate = nil;
}
判断定位是否可用并且初始化定位信息
/**判断定位是否可用并且初始化定位信息
*/
- (void)initLocation{
CLAuthorizationStatus status = [CLLocationManager authorizationStatus];
CLAuthorizationStatus statuss = [CLLocationManager locationServicesEnabled];
if (kCLAuthorizationStatusNotDetermined==statuss) {
[[AlertModel new] showAlertView:self title:@"您已经关闭了定位功能" message:@"启用位置服务,即可获取信息。" cancelButtonTitle:@"取消" otherButtonTitle:@"去设置" cancle:^{} confirm:^{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]]; }];
} else if (kCLAuthorizationStatusDenied == status ){
[[AlertModel new] showAlertView:self title:@"您已经关闭了定位功能" message:@"启用位置服务,即可获取信息。" cancelButtonTitle:@"取消" otherButtonTitle:@"去设置" cancle:^{} confirm:^{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];}];
} else {
//定位功能可用,开始定位
[AMapServices sharedServices].enableHTTPS = YES;}
}
回调处理
位置信息更新或者拖拽地图之后会走这个回调regionDidChangeAnimated位置变化更新的时候添加了一个动画效果,看起来会更好一点。
//添加一个图标的动画效果
[UIView animateWithDuration:0.3 delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^{
poiView.center = CGPointMake([UIScreen mainScreen].bounds.size.width/2, 150 - 35);} completion:^(BOOL finished) {
[UIView animateWithDuration:0.3 delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^{
poiView.center = CGPointMake([UIScreen mainScreen].bounds.size.width/2, 150 - 20);
} completion:nil];}];
1.周边检索
然后根据更新的坐标发起周边搜索
//构造AMapPOIAroundSearchRequest对象,设置周边请求参数
AMapPOIAroundSearchRequest *request = [[AMapPOIAroundSearchRequest alloc] init];
request.location = [AMapGeoPoint locationWithLatitude:mapView.centerCoordinate.latitude longitude:mapView.centerCoordinate.longitude];
// types属性表示限定搜索POI的类别,默认为:餐饮服务|商务住宅|生活服务
// request.types = @"高等院校|餐饮服务|购物服务|生活服务|体育休闲服务|医疗保健服务|住宿服务|风景名胜|商务住宅|政府机构及社会团体|科教文化服务|交通设施服务|金融保险服务|公司企业|道路附属设施|地名地址信息|公共设施";
request.types = @"";
request.sortrule = 0; //距离排序
request.requireExtension = YES;
request.offset = MAXCOUNT;
request.page = pageIndex;NSLog(@"周边搜索");
[activityView startAnimating];
activityBackView.hidden = NO;//发起周边搜索[search AMapPOIAroundSearch: request];
2.根据输入的关键词检索严格来讲我做的这个不是关键词检索,关键词检索用到的API是:
/**
* @brief POI 关键字查询接口
* @param request 查询选项。具体属性字段请参考 AMapPOIKeywordsSearchRequest 类。
*/
- (void)AMapPOIKeywordsSearch:(AMapPOIKeywordsSearchRequest *)request;
我这里用到的是根据输入提示查询,因为用关键词检索的时候有的较模糊的搜不出来,老板不开心,后来我发现这个输入法提示的很准确,但是搜索出的内容不可以控制多少条,默认就是10条左右,这个选择上看项目了。
输入提示查询接口
/**
* @brief 输入提示查询接口
* @param request 查询选项。具体属性字段请参考 AMapInputTipsSearchRequest 类。
*/
- (void)AMapInputTipsSearch:(AMapInputTipsSearchRequest *)request;
关键词查询接口
/**
* @brief POI 关键字查询接口
* @param request 查询选项。具体属性字段请参考 AMapPOIKeywordsSearchRequest 类。*/
- (void)AMapPOIKeywordsSearch:(AMapPOIKeywordsSearchRequest *)request;
下面我两种检索的相关设置都放一下
//关键词检索
AMapPOIKeywordsSearchRequest *request = [[AMapPOIKeywordsSearchRequest alloc] init];
request.keywords = keyword;
request.city = locationCity;
request.types = @"高等院校|餐饮服务|购物服务|生活服务|体育休闲服务|医疗保健服务|住宿服务|风景名胜|商务住宅|政府机构及社会团体|科教文化服务|交通设施服务|金融保险服务|公司企业|道路附属设施|地名地址信息|公共设施";
request.requireExtension = YES;
request.offset = MAXCOUNT;
request.cityLimit = NO; //不做城市限定
request.requireSubPOIs = YES;
request.page = pageIndex;
[activityView startAnimating];
activityBackView.hidden = NO;
//发起关键词搜索
[search AMapPOIKeywordsSearch:request];
//输入提示查询
AMapInputTipsSearchRequest *tips = [[AMapInputTipsSearchRequest alloc] init];
tips.keywords = keyword;
tips.city = @"";
tips.cityLimit = NO; //是否限制城市
[activityView startAnimating];
activityBackView.hidden = NO;
//发起输入提示查询
[search AMapInputTipsSearch:tips];
3.回调处理
回调返回的信息包含了,地址城市,经纬度等信息。
/**
* @brief POI查询回调函数
* @param request 发起的请求,具体字段参考 AMapPOISearchBaseRequest 及其子类。
* @param response 响应结果,具体字段参考 AMapPOISearchResponse 。*/
- (void)onPOISearchDone:(AMapPOISearchBaseRequest *)request response:(AMapPOISearchResponse *)response;
/**
* @brief 输入提示查询回调函数
* @param request 发起的请求,具体字段参考 AMapInputTipsSearchRequest 。
* @param response 响应结果,具体字段参考 AMapInputTipsSearchResponse 。*/
- (void)onInputTipsSearchDone:(AMapInputTipsSearchRequest *)request response:(AMapInputTipsSearchResponse *)response;
高德地图API里还有很多搜索的方法都可以根据实际情况自己选择。大致的流程就是这些了,主要的方法调用的API差不多我都写出来了,如果要做这一块多看看官方的文档,基本你想要实现的功能都有办法实现的。