- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS实现百度地图定位签到功能由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
写在前面:
项目需求用到这个功能,主要目的是实现老师设置位置签到范围,学生在一定范围内进行签到的功能.
功能如下方截图:
屏幕快照 2019-01-28 上午10.29.26.png 。
简要介绍:
下面记录一下主要的实现流程,功能的实现主要是根据百度地图开发者官网提供的api文档,各项功能之间组合。百度地图的sdk现在分成了地图功能和定位功能两块不同的sdk,baidumapapi这个是基础的地图功能,bmklocationkit这个是定位功能。项目里实现定位签到功能用的的sdk包括上面说的这两个模块,所以在用cocopods引入framework的时候,需要引入: #百度地图 pod 'bmklocationkit' pod 'baidumapkit' 。
功能实现 。
1、在appdelegate.m文件中引入:
1
2
|
#import <baidumapapi_base/bmkbasecomponent.h>
#import <bmklocationkit/bmklocationcomponent.h>
|
加入功能代码:
1
2
3
4
5
6
7
8
9
10
11
|
#pragma mark 百度地图设置
- (
void
)configbaidumap {
nsstring *ak = @
"xxxx"
;
bmkmapmanager *mapmanager = [[bmkmapmanager alloc] init];
self.mapmanager = mapmanager;
bool
ret = [mapmanager start:ak generaldelegate:nil];
[[bmklocationauth sharedinstance] checkpermisionwithkey:ak authdelegate:self];
if
(!ret) {
nslog(@
"manager start failed!"
);
}
}
|
2、在用到地图定位功能的viewcontroller中 。
1
2
3
|
#import <bmklocationkit/bmklocationcomponent.h>
#import <baidumapapi_base/bmkbasecomponent.h>//引入base相关所有的头文件
#import <baidumapapi_map/bmkmapcomponent.h>//引入地图功能所有的头文件
|
遵循协议<bmkmapviewdelegate,bmklocationmanagerdelegate> 。
声明全局变量 。
1
2
3
4
5
6
|
@property (nonatomic, strong) bmkuserlocation *userlocation;
//当前位置对象
@property (nonatomic, strong) bmklocationmanager *locationmanager;
/** locationmanager*/
@property (nonatomic, strong) bmkmapview *mapview;
/** 百度地图*/
//@property (nonatomic, strong) bmkpointannotation* annotation ;/** 标记*/
@property (nonatomic, strong) nsmutablearray *annotationarr;
/** 标记数组*/
@property (nonatomic, strong) nsmutablearray *circlearr;
/** 圆形数组*/
|
地图sdk文档中建议在以下代码中如此设置, 目的是控制内存 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
- (
void
)viewwillappear:(
bool
)animated {
[super viewwillappear:animated];
[_mapview viewwillappear];
_mapview.delegate = self;
}
- (
void
)viewwilldisappear:(
bool
)animated {
[super viewwilldisappear:animated];
[_mapview viewwilldisappear];
_mapview.delegate = nil;
}
- (
void
)dealloc {
if
(_mapview) {
_mapview = nil;
}
}
|
初始化数组,这两个数组在接下来会用到 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
- (nsmutablearray *)annotationarr {
if
(!_annotationarr) {
_annotationarr = [nsmutablearray array];
}
return
_annotationarr;
}
- (nsmutablearray *)circlearr {
if
(!_circlearr) {
_circlearr = [nsmutablearray array];
}
return
_circlearr;
}
|
添加地图view 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma mark 添加地图
- (
void
)addsignmapbgview {
if
(!self.mapbgview) {
uiview *mapbgview = [uiview
new
];
self.mapbgview = mapbgview;
mapbgview.backgroundcolor = [commutls colorwithhexstring:app_bgcolor];
[self addsubview:mapbgview];
[mapbgview makeconstraints:^(masconstraintmaker *make) {
make.top.equalto(self.tipview.bottom);
make.left.right.bottom.equalto(0);
}];
_mapview = [[bmkmapview alloc] initwithframe:cgrectzero];
// _mapview.delegate = self;
[_mapview setzoomlevel:21];
//精确到5米
_mapview.showsuserlocation = yes;
//显示定位图层
[mapbgview addsubview:_mapview];
[_mapview makeconstraints:^(masconstraintmaker *make) {
make.edges.equalto(0);
}];
_mapview.usertrackingmode = bmkusertrackingmodenone;
}
}
|
初始化地图定位:这里我用的是一次定位而没有选择持续定位.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#pragma mark 初始化locationmanager
- (
void
)inituserlocationmanager {
//因为mapview是在一个分离出来的view中创建的,所以在这里将signsettypeview中的mapview赋给当前viewcontroller的mapview;
self.mapview = self.mainview.signsettypeview.mapview;
self.mapview.delegate = self;
// self.annotation = [[bmkpointannotation alloc] init];
// self.mapview是bmkmapview对象
//精度圈设置
bmklocationviewdisplayparam *param = [[bmklocationviewdisplayparam alloc] init];
//设置显示精度圈,默认yes
param.isaccuracycircleshow = yes;
//精度圈 边框颜色
param.accuracycirclestrokecolor = [uicolor colorwithred:242/255.0 green:129/255.0 blue:126/255.0 alpha:1];
//精度圈 填充颜色
param.accuracycirclefillcolor = [uicolor colorwithred:242/255.0 green:129/255.0 blue:126/255.0 alpha:0.3];
[self.mapview updatelocationviewwithparam:param];
self.userlocation = [[bmkuserlocation alloc] init];
//初始化实例
_locationmanager = [[bmklocationmanager alloc] init];
//设置delegate
_locationmanager.delegate = self;
//设置返回位置的坐标系类型
_locationmanager.coordinatetype = bmklocationcoordinatetypebmk09ll;
//设置距离过滤参数
_locationmanager.distancefilter = kcldistancefilternone;
//设置预期精度参数
_locationmanager.desiredaccuracy = kcllocationaccuracybest;
//设置应用位置类型
_locationmanager.activitytype = clactivitytypeautomotivenavigation;
//设置是否自动停止位置更新
_locationmanager.pauseslocationupdatesautomatically = no;
//设置是否允许后台定位
//_locationmanager.allowsbackgroundlocationupdates = yes;
//设置位置获取超时时间
_locationmanager.locationtimeout = 15;
//设置获取地址信息超时时间
_locationmanager.regeocodetimeout = 15;
//请求一次定位
[self requestlocation];
}
|
请求定位,获取经纬度 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma mark 请求定位
- (
void
)requestlocation {
[_locationmanager requestlocationwithregeocode:yes withnetworkstate:yes completionblock:^(bmklocation * _nullable location, bmklocationnetworkstate state, nserror * _nullable error) {
if
(error)
{
nslog(@
"locerror:{%ld - %@};"
, (
long
)error.code, error.localizeddescription);
}
if
(location) {
//得到定位信息,添加annotation
if
(location.location) {
nslog(@
"loc = %@"
,location.location);
}
if
(location.rgcdata) {
nslog(@
"rgc = %@"
,[location.rgcdata description]);
}
if
(!location) {
return
;
}
if
(!self.userlocation) {
self.userlocation = [[bmkuserlocation alloc] init];
}
self.userlocation.location = location.location;
[self.mapview updatelocationdata:self.userlocation];
cllocationcoordinate2d mycoordinate = location.location.coordinate;
self.mapview.centercoordinate = mycoordinate;
//赋予初始值
self.viewmodel.lat = [nsstring stringwithformat:@
"%f"
, location.location.coordinate.latitude];
self.viewmodel.lng = [nsstring stringwithformat:@
"%f"
,location.location.coordinate.longitude];
self.viewmodel.radius = @
"50"
;
//打印经纬度
nslog(@
"didupdateuserlocation lat %f,long %f"
,location.location.coordinate.latitude,location.location.coordinate.longitude);
}
nslog(@
"netstate = %d"
,state);
}];
}
|
地图长按选点功能实现:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//长按地图选点
- (
void
)mapview:(bmkmapview *)mapview onlongclick:(cllocationcoordinate2d)coordinate {
if
(self.annotationarr.count > 0) {
[mapview removeannotations:self.annotationarr];
[self.annotationarr removeallobjects];
bmkpointannotation *annotation = [[bmkpointannotation alloc]init];
annotation.coordinate = coordinate;
[self.annotationarr addobject:annotation];
[mapview addannotations:self.annotationarr];
}
else
{
bmkpointannotation *annotation = [[bmkpointannotation alloc]init];
annotation.coordinate = coordinate;
[self.annotationarr addobject:annotation];
[mapview addannotations:self.annotationarr];
}
//弹出半径选择框
[self showlocationselectradiusviewwithcoordinate:coordinate];
}
|
选点后弹出选择定位范围弹框 。
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma mark 弹出位置弹框
- (
void
)showlocationselectradiusviewwithcoordinate:(cllocationcoordinate2d)coordinate {
extraactlocationsignpopview *popview = [extraactlocationsignpopview
new
];
[popview show];
@weakify(self);
[popview.locatioonsuresignal subscribenext:^(nsstring *x) {
@strongify(self);
self.viewmodel.radius = x;
cgfloat radius = [x floatvalue];
[self circlewithcenterwithcoordinate2d:coordinate radius:radius];
}];
}
|
设置好定位点以及半径范围后绘制范围圈,开始的时候声明的circlearr在这里用来盛放添加的区域圆形,在添加新的圆圈的时候,将之前旧的移除,保证每次绘制的范围都是最新的,同理annotationarr也是这个功能,因为api有提供的- (void)addoverlays:(nsarray *)overlays;这个方法:/** *向地图窗口添加一组overlay,需要实现bmkmapviewdelegate的-mapview:viewforoverlay:函数来生成标注对应的view overlays 要添加的overlay数组 */ 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma mark 添加区域圆形覆盖
- (
void
)circlewithcenterwithcoordinate2d:(cllocationcoordinate2d )coor radius:(cgfloat)radius {
nslog(@
"coordinate lat %f,long %f"
,coor.latitude,coor.longitude);
//赋予点击选点值
self.viewmodel.lat = [nsstring stringwithformat:@
"%f"
, coor.latitude];
self.viewmodel.lng = [nsstring stringwithformat:@
"%f"
,coor.longitude];
if
(self.circlearr.count > 0) {
[_mapview removeoverlays:self.circlearr];
[self.circlearr removeallobjects];
bmkcircle *circle = [bmkcircle circlewithcentercoordinate:coor radius:radius];
[self.circlearr addobject:circle];
[_mapview addoverlays:self.circlearr];
}
else
{
bmkcircle *circle = [bmkcircle circlewithcentercoordinate:coor radius:radius];
[self.circlearr addobject:circle];
[_mapview addoverlays:self.circlearr];
}
}
#pragma mark 重绘overlay
- (bmkoverlayview *)mapview:(bmkmapview *)mapview viewforoverlay:(id <bmkoverlay>)overlay{
if
([overlay iskindofclass:[bmkcircle
class
]]){
bmkcircleview* circleview = [[bmkcircleview alloc] initwithoverlay:overlay];
circleview.fillcolor = [uicolor colorwithred:33/255.0 green:196/255.0 blue:206/255.0 alpha:0.3];
circleview.strokecolor = [uicolor colorwithred:33/255.0 green:196/255.0 blue:206/255.0 alpha:1];
circleview.linewidth = 1.0;
return
circleview;
}
return
nil;
}
|
至此,在地图上选点进行签到功能基本实现,另外,关于 自定义的范围圆圈的颜色,边框大小都是可以自定义的,选点的标记也是可以自定义的,官方文档有说明 。
总结 。
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对我的支持.
原文链接:https://www.jianshu.com/p/e948a3bfe600 。
最后此篇关于iOS实现百度地图定位签到功能的文章就讲到这里了,如果你想了解更多关于iOS实现百度地图定位签到功能的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在构建一个 RCP 应用程序,其中每个季度都会更新功能/插件。因此,如果用户选择自动更新功能/插件,则会下载更新插件的新 jar,但旧插件仍在使用我不再使用的磁盘空间。 我厌倦了删除包含旧 jar
我如何从外部 Controller 功能中调用 Controller 内部的功能,例如电话间隙回调功能 这是 Controller 外部定义的功能 function onDeviceReady()
如果某个功能(例如 MediaSource)可用,我如何使用 Google Dart 检查。 new MediaSource() 抛出一个错误。如何以编程方式检查此类或功能是否存在?有任何想法吗?是否
我正在尝试运行 Azure Orchestrations,突然我开始从 statusQueryGetUri 收到错误: 协调器函数“UploadDocumentOrchestrator”失败:函数“U
我见过 iPhone 上的应用程序,如果在 3.0 上运行,将使用 3.0 功能/API,例如应用内电子邮件编辑器,如果在 2.x 上运行,则不使用这些功能,并退出应用程序以启动邮件相反。 这是怎么做
这是 DB 规范化理论中的一个概念: Third normal form is violated when a non-key field is a fact about another non-ke
如果我定义 #if SOMETHING #endif 而且我还没有在任何地方定义 SOMETHING。 #if 中的代码会编译吗? 最佳答案 当#if的参数表达式中使用的名称未定义为宏时(在所有其他宏
我刚刚澄清了 A* 路径查找应该如何在两条路径具有相等值的 [情况] 下运行,无论是在计算期间还是在结束时,如果有两条相等的短路径。 例如,我在我的起始节点,我可以扩展到两个可能的节点,但它们都具有相
Java有没有类似下面的东西 宏 一种遍历所有私有(private)字段的方法 类似于 smalltalk symbols 的东西——即用于快速比较静态字符串的东西? 请注意,我正在尝试为 black
这个程序应该将华氏度转换为摄氏度: #include int main() { float fahrenheit, celsius; int max, min, step;
当打开PC缓存功能后, 软件将采用先进先出的原则排队对示波器采集的每一帧数据, 进行帧缓存。 当发现屏幕中有感兴趣的波形掠过时, 鼠标点击软件的(暂停)按钮, 可以选择回看某一帧的波形
我有一个特殊的(虚拟)函数,我想在沙盒环境中使用它: disable.system.call eval(parse(text = 'model.frame("1 ~ 1")'), envir = e
使用新的 Service 实现,我是否必须为我的所有服务提供一个 Options 方法? 使用我的所有服务当前使用的旧 ServiceBase 方法,OPTIONS 返回 OK,但没有 Access-
我正在阅读 Fogus 的关于 Clojure 的喜悦的书,在并行编程章节中,我看到了一个函数定义,它肯定想说明一些重要的事情,但我不知道是什么。此外,我看不到这个函数有什么用 - 当我执行时,它什么
我有大量的 C 代码,大部分代码被注释掉和/或 #if 0。当我使用 % 键匹配 if-else 的左括号和右括号时,它也匹配注释掉的代码。 有没有办法或vim插件在匹配括号时不考虑注释掉或#if 0
我有这个功能: map(map(fn x =>[x])) [[],[1],[2,3,4]]; 产生: val it = [[],[[1]],[[2],[3],[4]]] 我不明白这个功能是如何工作的。
我使用 Visual Studio 代码创建了一个函数应用程序,然后发布了它。功能应用程序运行良好。我现在在功能门户中使用代码部署功能(KUDU)并跳过构建。下面是日志 9:55:46 AM
我有一个数据框df: userID Score Task_Alpha Task_Beta Task_Charlie Task_Delta 3108 -8.00 Easy Easy
我真的无法解决这个问题: 我有一个返回数据框的函数。但是,数据框仅打印在我的控制台中,尽管我希望将其存储在工作空间中。我怎样才能做到这一点? 样本数据: n <- 32640 t <- seq(3*p
有没有办法找出所有可能的激活器命令行选项? activator -help仅提供最低限度的可用选项/功能列表,但所有好的东西都隐藏起来,即使在 typesafe 网站在线文档中也不可用。 到目前为止,
我是一名优秀的程序员,十分优秀!