我正在尝试导入coordEach
从 npm 模块命名的函数@turf/meta
。我尝试使用导入和破坏函数,但我收到此错误:
Uncaught (in promise) TypeError: Object(...) is not a function
我的代码:
import { coordEach } from "@turf/meta";
export const morphGeoJSON = (feature, bbox, width, height) => {
coordEach(
feature,
(
currentCoords,
coordIndex,
featureIndex,
multiFeatureIndex,
geometryIndex
) => {
debugger;
}
);
return feature;
};
据我所知,我正在正确地从包中导入所有内容。npm install 也可以。
我错过了什么?
我也试过
import turfMeta from "@turf/meta"
turfMeta.coordEach(feature, () => {debugger})
那里的错误是:
未处理的拒绝(TypeError):__WEBPACK_IMPORTED_MODULE_0__turf_meta___default.a.coordEach 不是函数