Closed xiaoiver closed 2 years ago
以下方法增加了可选配置项 options,内部会跳过不需要的计算过程(bbox 或长度),目前支持参数有 sampleSize,越少的采样点计算越快,但会牺牲一些精度:
options
sampleSize
getTotalLength(pathInput: string | PathArray, options?: Partial<PathLengthFactoryOptions>): number; getPathBBox(path: string | PathArray, options?: Partial<PathLengthFactoryOptions>): PathBBox; getPathBBoxTotalLength( path: PathArray, options?: Partial<PathLengthFactoryOptions>, ): PathBBoxTotalLength;
以下方法增加了可选配置项
options
,内部会跳过不需要的计算过程(bbox 或长度),目前支持参数有sampleSize
,越少的采样点计算越快,但会牺牲一些精度:92