我正在尝试为(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