arcgis js 4.7版本 怎么给graphics 添加点击事件 主要就是监听点 线 面

3.X 版本的是这样的, 4.7实在找不到求大神指点
QQ截图20180507135634.png
已邀请:

许丹石

赞同来自: vivizhang123 cannel 夏天D atlas1563

var highlight;
view.on("click",function(event){
if(highlight){
highlight.remove();
}
view.hitTest(event).then(function(response){
if(response.results[0]){
var graphic = response.results[0].graphic;
view.whenLayerView(graphic.layer).then(function(lyrView){
highlight = lyrView.highlight(graphic);
})
}
})
});
点击高亮。

要回复问题请先登录注册