1

我的 arcGIS 地图中有一个图层列表,单击特定图层时需要添加弹出窗口。是否可以从图层列表中检测到所需的图层并打开弹出窗口?当我应用文档中给出的示例代码时,有时弹出窗口会突然消失。我相信这是因为地图上有多个图层。我们怎样才能实现它?

view.on("click", function(event){
  view.popup.open({
   location: event.mapPoint,  // location of the click on the view
   title: "You clicked here",  // title displayed in the popup
   content: "This is a point of interest"  // content displayed in the popup
  });
});

我正在循环图层并将其添加到地图中,例如:'map.add(layer[count])'。我不需要默认弹出窗口,因为我必须从 API 获取数据并填充到弹出模板中。

4

0 回答 0