携手创造,共同生长!这是我参加「日新方案 8 月更文挑战」的第6天,点击查看活动概况
前言
需求: 手动输入方位信息需求进行地舆编码获取经纬度,判别是否为国内地址。
I 高德方位服务:地舆编码(地址转坐标)
用户在高德地图官网申请Web服务API类型Key:https://lbs.amap.com/dev/
开发 > Web服务 API > 开发攻略 > API文档 > 地舆/逆地舆编码 :https://lbs.amap.com/api/webservice/guide/api/georegeo/
1.1地舆编码 API 服务地址
- restapi.amap.com/v3/geocode/…
商户进件→商户概况,从头定位,若输入的地址只有国家+市(例如:中国浙江),点击确认后,去恳求第三方地舆编码信息(高德API)的时分会转化失利,获取不到经纬度信息。 提示:【获取经纬度失利,请输入具体地址!】
1.2适用场景
- 地舆编码:将手动输入的具体的结构化地址转化为高德经纬度坐标。且支持对地标性名胜景区、建筑物称号解析为高德经纬度坐标。 1、结构化地址举例:北京市朝阳区阜通东大街6号转化后经纬度:116.480881,39.989410 2、地标性建筑举例:天安门转化后经纬度:116.397499,39.908722
- 逆地舆编码:将经纬度转化为具体结构化的地址,且回来附近周边的POI、AOI信息。 1、例如:116.480881,39.989410 转化地址描述后:北京市朝阳区阜通东大街6号
1.3 结构化地址信息 address
恳求参数的要求
-
规矩遵从:国家、省份、城市、区县、乡镇、乡村、大街、门牌号码、屋邨、大厦,如:北京市朝阳区阜通东大街6号。
-
另外这个API的对地址的具体要求是: 结构化地址的定义: 首先,地址肯定是一串字符,内含国家、省份、城市、区县、乡镇、乡村、大街、门牌号码、屋邨、大厦等建筑物称号。按照由大区域称号到小区域称号组合在一起的字符。一个有用的地址应该是绝无仅有的。注意:针对大陆、港、澳地区的地舆编码转化时可以将国家信息选择性的忽略,但省、市、乡镇等级别的地址构成是不能忽略的。暂时不支持回来台湾省的具体地址信息。
-
需求对恳求参数不精确,进行反常处理
CRMgeoDto *dto = [CRMgeoDto mj_objectWithKeyValues:responseObject];
if(dto.status.integerValue == 1){
// 获取经纬度 ,假如失利,提示【获取经纬度失利,请输入精确的运营地址!】
void (^noLocationdataBlock)(void) = ^void(void) {
[SVProgressHUD showInfoWithStatus:@"获取经纬度失利,请输入精确的运营地址!"];
};
// responseObject: {
// status = 1;
// info = OK;
// infocode = 10000;
// count = 0;
// geocodes = (
// );
if(dto.geocodes.count<=0){
noLocationdataBlock();
return ;
}
CRMgeocodesDto *geocodesDto = dto.geocodes.firstObject;
if([NSStringQCTtoll isBlankString:geocodesDto.location]){
noLocationdataBlock();
return ;
}
NSArray *array = [responseObject[@"geocodes"][0][@"location"] componentsSeparatedByString:@","];
if(array.count<=1){
noLocationdataBlock();
return;
}
1.4接口回来的格式
-
回来的dto模型定义
-
location
location = "114.468664,38.037057";
2020-04-10 11:43:29.914038+0800 Housekeeper[943:136269] responseObject: {
count = 1;
geocodes = (
{
adcode = 350503;
building = {
name = (
);
type = (
);
};
city = "\U6cc9\U5dde\U5e02";
citycode = 0595;
country = "\U4e2d\U56fd";
district = "\U4e30\U6cfd\U533a";
"formatted_address" = "\U798f\U5efa\U7701\U6cc9\U5dde\U5e02\U4e30\U6cfd\U533a\U5bcc\U5927\U53a6";
level = "\U5174\U8da3\U70b9";
location = "118.620285,24.908597";
neighborhood = {
name = (
);
type = (
);
};
number = (
);
province = "\U798f\U5efa\U7701";
street = (
);
township = (
);
}
);
info = OK;
infocode = 10000;
status = 1;
}
1.5 经过逆地舆编码进行判别是否在大陆
判别目标经纬度是否在大陆 : kunnan.blog.csdn.net/article/det…
经过经纬度进行判别。利用高德SDK进行判别。(
假如是手动输入方位信息就进行逆地舆编码获取经纬度
)
/**
处理地舆编码
*/
- (void)setupGeocode{
__weak __typeof__(self) weakSelf = self;
if (weakSelf.locationView.adressTextView.text.length > 0) {
[SVProgressHUD showWithStatus:@"定位中.."];
AFHTTPSessionManager *managers = [AFHTTPSessionManager manager];
managers.requestSerializer = [AFHTTPRequestSerializer serializer];
managers.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",@"text/plain",@"application/json",@"text/javascript",nil];
// NSString *urlStr = [NSString stringWithFormat:@"https://restapi.amap.com/v3/geocode/geo"];
NSString *urlStr = k_amap_geocode;
NSDictionary *dict = @{@"key" : @"" , @"address" : weakSelf.locationView.adressTextView.text};
[managers GET:urlStr parameters:dict progress:^(NSProgress * _Nonnull downloadProgress) {
NSLog(@"downloadProgress: %@",downloadProgress);
[SVProgressHUD dismiss];
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"商户进件→商户概况,从头定位,若输入的地址只有国家+市(例如:中国浙江),点击确认后,去恳求第三方地舆编码信息(高德API)的时分会转化失利,获取不到经纬度信息。 提示:【获取经纬度失利,请输入具体地址!】 responseObject: %@",responseObject);
//status
// 回来结果状况值
// 回来值为 0 或 1,0 表明恳求失利;1 表明恳求成功
CRMgeoDto *dto = [CRMgeoDto mj_objectWithKeyValues:responseObject];
if(dto.status.integerValue == 1){
// 获取经纬度 ,假如失利,提示【获取经纬度失利,请输入精确的运营地址!】
void (^noLocationdataBlock)(void) = ^void(void) {
[SVProgressHUD showInfoWithStatus:@"获取经纬度失利,请输入精确的运营地址!"];
};
// responseObject: {
// status = 1;
// info = OK;
// infocode = 10000;
// count = 0;
// geocodes = (
// );
if(dto.geocodes.count<=0){
noLocationdataBlock();
return ;
}
CRMgeocodesDto *geocodesDto = dto.geocodes.firstObject;
if([NSStringQCTtoll isBlankString:geocodesDto.location]){
noLocationdataBlock();
return ;
}
NSArray *array = [responseObject[@"geocodes"][0][@"location"] componentsSeparatedByString:@","];
if(array.count<=1){
noLocationdataBlock();
return;
}
[weakSelf locotionRequestLat:array[1] Lon:array[0] adress:weakSelf.locationView.adressTextView.text];
[weakSelf.locationView.adressTextView resignFirstResponder];
weakSelf.locationView.frame = CGRectMake(0, kHeight, kWidth, KWratio(self.locationViewH));
weakSelf.bacV.hidden = YES;
}else{
[SVProgressHUD showInfoWithStatus:@"请输入精确的运营地址!"];
}
// if ([[NSString stringWithFormat:@"%@",responseObject[@"status"]]isEqualToString:@"1"]) {
// } else {
// }
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
[SVProgressHUD showInfoWithStatus:@"网络过错!"];
}];
} else {
[SVProgressHUD showInfoWithStatus:@"请输入运营地址"];
}
}
II 腾讯方位服务:文字地址到经纬度的转化才能(webService)
lbs.qq.com/service/web…
API: https://apis.map.qq.com/ws/geocoder/v1/?address=
2.1 key的配置
问题:没有启用WebserviceAPI”
“message” : “此key未敞开WebserviceAPI功用,您可登录lbs.qq.com,进入控制台key管理界面,找到此key并设置启用WebserviceAPI”
处理方式:
2.2 恳求API
/**
处理地舆编码:经过逆地舆编码进行判别是否在大陆
//status 状况码,0为正常,其它为反常,
*/
- (void)setupGeocode:(NSString*)addressText block:(void (^)(CRMGeocoderDto* geocoder))block
{
NSString *urlStr = k_amap_geocode_Tencent;
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setValue:self.locationManager.apiKey forKey:@"key"];
[params setValue:addressText forKey:@"address"];
[QCTNetworkHelper GETAPI:urlStr parameters:params success:^(NSDictionary* responseObj) {
void (^noLocationdataBlock)(void) = ^void(void) {
[SVProgressHUD showInfoWithStatus:@"获取经纬度失利,请输入精确的运营地址!"];
};
if(![responseObj.allKeys containsObject:@"result"]){
noLocationdataBlock();
return ;
}
NSDictionary *result = responseObj[@"result"];
CRMGeocoderDto *dto = [CRMGeocoderDto mj_objectWithKeyValues:result];
if(block){
block(dto);
}
} failure:nil bizFailure:nil isShowLoadingDataGif:YES];
}
2.3 回来数据
{
"status" : 0,
"message" : "query ok",
"result" : {
"location" : {
"lng" : 117.15011,
"lat" : 39.138150000000003
},
"address_components" : {
"district" : "南开区",
"street_number" : "",
"province" : "天津市",
"city" : "天津市",
"street" : ""
},
"similarity" : 0.80000000000000004,
"title" : "南开区",
"deviation" : 1000,
"ad_info" : {
"adcode" : "120104"
},
"level" : 2,
"reliability" : 1
}
}
see also
含糊定位适配: blog.csdn.net/z929118967/…
公众号:iOS逆向