上一次迭代将覆盖Object中的先前属性

时间:2018-04-06 15:42:10

标签: javascript geojson

我正在尝试为(geo)json文件中的某些功能提供个人ID。

Object.keys(hexgrid.features).forEach(function(key,i){
    hexgrid.features[key].properties.hexId = (i+1)
})

Object.values(hexgrid.features).forEach(function(feature){
    console.log(feature.properties.hexId)
})

预期产出:

1
2
3
...
7790  

实际输出:

7790
7790
7790
7790

0 个答案:

没有答案