gpt4 book ai didi

缺少 Mapbox 要素 ID 参数

转载 作者:行者123 更新时间:2023-12-05 08:29:21 28 4
gpt4 key购买 nike

我从 mapbox 中获取了这个演示:

https://docs.mapbox.com/mapbox-gl-js/example/hover-styles/

我用自己的 GeoJson 文件替换了演示文件,代码在这里:

https://codepen.io/hiven/pen/rNYdvdg?editors=1112

我得到的错误是:

Error: The feature id parameter must be provided.

我不明白这是什么意思,因为此片段中提供了功能 ID:

   map.addLayer({
'id': 'state-borders',
'type': 'line',
'source': 'states',
'layout': {},
'paint': {
'line-color': '#627BC1',
'line-width': 2
}
});

最佳答案

您必须将 generateId: true 添加到您的 addSource 方法参数中。

map.addSource('states', {
'type': 'geojson',
'data': 'https://hiven.github.io/map2/hexagons.geojson',
'generateId': true //This ensures that all features have unique IDs
});

关于缺少 Mapbox 要素 ID 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71198235/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com