Appearance
搜索目标附近相机
js
const params = {
area: {
height: 100, // 高度
latitude: 100, // 经度
longitude: 100, // 纬度
radius: 100 // 搜索半径(检索该点位附近相机)
},
tagList: ['球机'] // tags列表
}
cloudObj.RtAPI("VirtualCameras", params, (res) => {
console.log(res);
});1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
