首页 / 浏览问题 / WebGIS / 问题详情
webGL中的如何给一个entity面一个点击事件
68EXP 2020年08月13日
viewer.entities.add({
                                    id: features[j].properties.PLACE_NAME,
                                    polygon: {
                                        hierarchy: zuobiaos,
                                        material: colorObj[grades[j]],
                                        //material: Cesium.Color.fromCssColorString('rgba(234,222,13,0.5)'),
                                        clampToS3M: true
                                    }
                                });

这是我添加的图层,我想点击某个图层的时候就会弹出它的ID

1个回答

您好,您可以参考API文档http://support.supermap.com.cn:8090/webgl/Build/Documentation/Entity.html?classFilter=entity,在entity的description属性中写入图层的id。

1,545EXP 2020年08月13日
...