版本支持: v1.0.0+
接口概述: 开启批注
接口定义:
void StartAnnotation(int callIndex)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
callIndex | int | 是 | 无 | 当前呼叫的唯一标识 |
版本支持: v1.0.0+
接口概述: 结束标注
接口定义:
void StopAnnotation(int callIndex)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
callIndex | int | 是 | 无 | 当前呼叫的唯一标识 |
版本支持: v1.0.0+
接口概述: 更新批注信息
接口定义:
void UpdateAnnotation(SDKAnnotationStateInfo info, bool mIsOpenBySelf)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
info | 是 | 无 | 标注状态信息 | |
mIsOpenBySelf | bool | 是 | 无 | 是否自己开启 |
版本支持: v1.0.0+
接口概述: 开始绘制批注
接口定义:
void StartAnnotationDrawing(string color, int width, List<System.Windows.Point> pointList, string cid)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
color | string | 是 | 无 | 颜色值 |
width | int | 是 | 无 | 宽 |
pointList | List | 是 | 无 | 点集合信息 |
cid | string | 是 | 无 | 线id |
版本支持: v1.0.0+
接口概述: 继续绘制批注
接口定义:
void ContinueAnnotationDrawing(List<System.Windows.Point> pointList, bool isComplete, string cid)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
pointList | List | 是 | 无 | 点集合信息 |
isComplete | bool | 是 | 无 | 是否完成 |
cid | string | 是 | 无 | 线id |
版本支持: v1.0.0+
接口概述: 接收到对应标注后,通知远端
接口定义:
void NotifyAnnotationRecved(string cid)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
cid | string | 是 | 无 | 线id |
版本支持: v1.0.0+
接口概述: 开始标注前设置是否需要清除所有标注
接口定义:
void SetStartAnnotationWithClear(bool clear)
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
clear | bool | 是 | 无 | true,清除 |
版本支持: v1.0.0+
接口概述: 清除所有标注
接口定义:
void ClearAnnotation()