# clone

Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'. ~3-5x faster than the common JSON.parse + JSON.stringify combo method.
返回传入的GeoJSON对象的克隆副本,包括可能存在的“外部成员”。比常见的 JSON.parse + JSON.stringify 组合方法快3-5倍。

> npm install @turf/clone

参数

参数 类型 描述
geojson GeoJSON GeoJSON 对象

返回

GeoJSON - 克隆的 GeoJSON 对象

示例

var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]], {color: 'red'});

var lineCloned = turf.clone(line);
Last Updated: 7/3/2023, 9:59:14 PM