美文网首页
解析地图post及附近违章查询2

解析地图post及附近违章查询2

作者: 法库德 | 来源:发表于2017-09-21 21:27 被阅读0次

业务处理层.h

//分享单例对象

+ (instancetype)shareLoadData;

//获取数据

- (void)getData:(NSDictionary *)dic;

//定义block传值

@property (nonatomic,strong)void (^dataDic)(NSDictionary *dataDictionary);

.m

//定义静态变量

static LoadData *ld = nil;

//分享单例对象

+ (instancetype)shareLoadData

{

static dispatch_once_t onceToken;

dispatch_once(&onceToken, ^{

ld = [[LoadData alloc]init];

});

return ld;

}

+ (instancetype)allocWithZone:(struct _NSZone *)zone

{

if (!ld) {

ld = [super allocWithZone:zone];

}

return ld;

}

- (id)copy

{

return self;

}

- (id)mutableCopy

{

return self;

}

//获取数据

- (void)getData:(NSDictionary *)dic

{

//创建请求网址

NSURL *url = [NSURL URLWithString:@"http://api.jisuapi.com/illegaladdr/coord"];

//创建请求对象

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

//设置请求方式

request.HTTPMethod = @"POST";

//设置请求参数

NSString *str = [NSString stringWithFormat:@"lat=%@&lng=%@&num=%@&range=%@&appkey=%@",dic[@"lat"],dic[@"lng"],dic[@"num"],dic[@"range"],dic[@"appkey"]];

//设置请求方法体

request.HTTPBody = [str dataUsingEncoding:NSUTF8StringEncoding];

//获取会话对象

NSURLSession *session = [NSURLSession sharedSession];

//请求数据

NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

//解析json数据

NSDictionary *dataDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];

//block传值

dispatch_async(dispatch_get_main_queue(), ^{

self.dataDic(dataDic);

});

}];

//开始请求

[task resume];

}

第一个视图

.h

#import "LoadData.h"

#import "DetailViewController.h"

#import<MapKit/MapKit.h>

#import<CoreLocation/CoreLocation.h>

<CLLocationManagerDelegate>

{

//定义变量地图视图、定位对象、当前位置

MKMapView *mv;

CLLocationManager *lm;

CLLocation *loc;

[super viewDidLoad];

//创建导航按钮

UIBarButtonItem *item = [[UIBarButtonItem alloc]initWithTitle:@"附近违章高发地" style:UIBarButtonItemStylePlain target:self action:@selector(itemClicked)];

self.navigationItem.rightBarButtonItem = item;

//初始化地图视图

mv = [[MKMapView alloc]initWithFrame:self.view.bounds];

mv.mapType = MKMapTypeStandard;

mv.zoomEnabled = YES;

mv.rotateEnabled = YES;

mv.scrollEnabled = YES;

mv.showsUserLocation = YES;

[self.view addSubview:mv];

//初始化定位管理器

lm = [[CLLocationManager alloc]init];

[lm requestWhenInUseAuthorization];

//设置代理

lm.delegate = self;

//设置精确度

lm.desiredAccuracy = kCLLocationAccuracyBest;

//色织过滤器

lm.distanceFilter = kCLDistanceFilterNone;

//开始定位

[lm startUpdatingLocation];

}

//设置导航按钮响应方法

- (void)itemClicked

{

//跳转

DetailViewController *dvc = [[DetailViewController alloc]init];

dvc.loc = loc;

[self.navigationController pushViewController:dvc animated:YES];

}

//设置定位响应方法- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(nonnull NSArray*)locations

{

loc = locations.lastObject;

//定位位置

MKCoordinateSpan span = {0.01,0.01};

MKCoordinateRegion region = {loc.coordinate,span};

[mv setRegion:region animated:YES];

//添加锚点

MKPointAnnotation *anno = [[MKPointAnnotation alloc]init];

anno.coordinate = loc.coordinate;

[mv addAnnotation:anno];

}

跳转

.h

//定义属性当前位置

@property (nonatomic,strong)CLLocation *loc;

.h

<UITableViewDataSource,UITableViewDelegate>

{

//定义变量数据字典、表格

NSArray *arr;

UITableView *table;

}

//设置请求参数

NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[NSString stringWithFormat:@"%f",self.loc.coordinate.latitude],@"lat",[NSString stringWithFormat:@"%f",self.loc.coordinate.longitude],@"lng",@"1000",@"range",@"10",@"num",@"de394933e1a3e2db",@"appkey", nil];

//调用业务处理类请求数据

[[LoadData shareLoadData]getData:dic];

//初始化表格

table = [[UITableView alloc]initWithFrame:self.view.bounds];

table.dataSource = self;

table.delegate = self;

[self.view addSubview:table];

- (void)viewWillAppear:(BOOL)animated

{

//更新数据字典

[LoadData shareLoadData].dataDic = ^(NSDictionary *dataDictionary) {

arr = dataDictionary[@"result"];

//更新表格

[table reloadData];

};

}

//设置行数

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

return arr.count;

}

//设置单元格内容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

static NSString *cellid = @"cellid";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];

if (!cell) {

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellid];

}

NSDictionary *dic = arr[indexPath.row];

cell.textLabel.text = [NSString stringWithFormat:@"%@%@%@",dic[@"province"],dic[@"city"],dic[@"address"]];

cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",dic[@"content"]];

return cell;

}

相关文章

  • 解析地图post及附近违章查询2

    业务处理层.h //分享单例对象 + (instancetype)shareLoadData; //获取数据 - ...

  • 违章高发地查询

    去不熟悉的地方自驾游,违章往往让我们头疼。在地图上点击位置就可以查询附近会发生的违章,非常适合自驾游旅行出游的伙伴。

  • 从案例中看产品设计原则

    违章查询助手是汽车之家旗下产品,打出完整版(违章查询助手)和简装版(违章查询)的组合。简装版只提供查违章和看天气的...

  • SQL查询功能实践

    准备数据 题目及解析1、 查询Student表中的所有记录的Sname、Ssex和Class列。 2、 查询教师所...

  • 违章高发地

    违章高发地查询,违章无处不在,防患于未然。

  • 数据查询

    ES查询用例 单个index 1、全文检索 多字段查询 2、地图搜索 地图字段查询,依赖数据中包含带有geo_lo...

  • iOS 自带地图实现附近查询搜索

    #pragma mark ------- #pragma mark 地理位置相关 - (void)locan { ...

  • 车辆违章批量查询

    12123wz车辆违章批量查询系统,是针对全国各类型的车辆进行违章查询的。专门为车队运输公司打造的查询平台,直连1...

  • Elasticsearch基本操作-搜索

    一、返回结构 二、查询方式 1、GET查询方式 2、POST 查询方式(请求体查询方式) query内部简单包含关...

  • WebGIS 3-1 坐标点查询-高亮显示地图并以json形式展

    1. 加载地图 1) 加载底图 2) 创建图层用于高亮显示 2.查询 查询5步曲 a.创建查询结构 b.创建查询形...

网友评论

      本文标题:解析地图post及附近违章查询2

      本文链接:https://www.haomeiwen.com/subject/drgtextx.html