我如何使用 turfjs 库在两个经度和纬度之间生成点

How can i generate points between two longitudes and latitudes using turfjs library

我想在地图上模拟移动多恩。为此,我想使用 socket.io 发送无人机当前的经度和纬度。只是为了模拟,因为在生产数据将通过套接字。

问题

我在地图上有两个经度和纬度点。现在,我想在将两个点相加而成的线上生成一些点,这样我就可以在某个时间间隔通过 socket 发送它们。

我尝试使用 https://turfjs.org/ to do that. I was thinking that I can use Line chunk

查看它的返回值,发现是LineStrings.

的集合

我不明白这里的线块是什么意思,我是否可以使用它的坐标来创建一条线。

我需要什么

我有两点:

A = [lon1,lat1] B = [lon2,lat2]

我需要这个

[
[lon1,lat1]
// some more points
[lon2,lat2]
]

使用

var linePoint = turf.lineString([[-95, 40], [-93, 45]]);
var options = {units: 'kilometers'};

var along = turf.along(linePoint, 100, options);
// at distance of 100KM from first point  towards second point