# geojsonType

Enforce expectations about types of GeoJSON objects for Turf.
Turf库要求输入的GeoJSON对象必须符合预期类型。

> npm install @turf/invariant

参数

参数 类型 描述
value GeoJSON 任何 GeoJSON 对象
type string 预期的GeoJSON类型
name string 调用函数的名称

示例

var locationA = turf.point([-75.343, 39.984], {name: 'Location A'});

turf.geojsonType(locationA.geometry, 'Point', 'Location A');
Last Updated: 6/23/2023, 10:33:35 PM