最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - Updating a layer in deckgl makes data disappear - Stack Overflow

programmeradmin0浏览0评论

I am using GeoJsonLayer to render some vector data.

I have also a list of texts where each text corresponds to a layer,and there can be several layers(passed to DeckGl as prop).

I want behaviour such that when user hovers over the text, corresponding layer gets highlighted.

So my approach is to maintain a map of text vs geojson-layer-instance, and whenever user hovers, I iterate through the map to get corresponding intance of GeoJsonLayer, and create new instance of GeoJsonLayer with prev props(layer.props) and a new getFillColor(some different color to highlight the features in it), and then I update the layers list using setState hook.

const updateLayer = () => {
    setLayers((key, layer) =>
      key === text-selected
          ? new GeoJsonLayer({
              ...layer.props,
               
              getFillColor: [0, 255, 0],
            })
          : layer
      )
    );
  };

But what I observe is that geo-data disappears from the map when I update layers this way.

What am I missing in my approach?

发布评论

评论列表(0)

  1. 暂无评论