室内位置 最后更新时间: 2021年01月22日
当前定位点开关
1)函数体:
@property(nonatomic)BOOL showLocationPoint;
2)取值:
取值 | 类型 | 说明 |
---|---|---|
YES | 类型 | 显示 |
NO | 类型 | 不显示 |
设置当前定位点
1)函数体:
-(int)setLocationPoint:(OIMPoint)point orientation:(float)orientation accuracy:(float)accuracy;
2)参数说明:
参数 | 类型 | 说明 |
---|---|---|
point | OIMPoint | 定位点坐标,包括经纬度和楼层 |
orientation | float | 定位的方向 |
accuracy | float | 定位的精度 |
返回值:
返回值 | 类型 | 说明 |
---|---|---|
IMOK | int | 成功 |
IMERR | int | 失败 |
当前的跟模式
1)函数体:
@property(nonatomic)int followingMode;
2)说明: 当前有3种模式:
- OIMFollowingMode_DontFollow 地图不跟随模式,默认方式,显示动画。
- OIMFollowingMode_FollowLocation 地图位置跟随模式,根据定位点的位置移动地图。
- OIMFollowingMode_FollowLocationAndDirection 地图位置和方向跟随模式,根据定位点的位置移动地图,同时根据定位给出的方向旋转地图。