# 功能描述
- 向 3D 世界中显示被隐藏的 POI 点
# 请求方式
gisTwin.UEAPI("POI", "Show", jsondata, (e) => {
console.log(e); //成功、失败回调
});
# 数据格式
let jsondata = {
ids: ["poi_id_1", "poi_id_2"] //填需要显示的POI的id列表
};
# 回调格式
let callback = {
class_name: "POI",
func_name: "Show",
data: {
result: "success" //只用成功才会是success,其他会发送错误的原因
}
};