我决定获取与geolib进行原生响应的位置之间的距离 但我不知道如何在foreach中获取上一个或下一个位置 我的代码
Array.from(locations).forEach(item=>{
if(geolib.getDistance({latitude : item.latitude ,longitude: item.longitude},{latitude:35.75,longitude:51.456})/1000 > 200 ){
console.log('longer than 200m')
}else {
console.log('bala bala ')
}
})
我的问题是如何在foreach中获取以前的数据
解决!! Javascript forEach() through an array: how to get the previous and next item?