arcgis api for js 4.x 有没有监听FeatherLayer加载并渲染完毕的事件

请问下  arcgis api for js 4.8 有没有监听FeatherLayer加载并渲染完毕的事件。
已邀请:

许丹石

赞同来自: 陈晨

FeatureLayerView的when 可以满足吗?参考:https://developers.arcgis.com/ ... 3when

陈辰 - The wisest is she who knows she does not know

赞同来自: 陈晨

view.whenLayerView(featureLayer).then(function(layerView) {
          layerView.watch('updating', function() {
            ....
          });
        });

要回复问题请先登录注册