易用 & 完整
- 📦 开箱即用的 ts 类型支持,GeoJSON 创建函数
- 📐 遵循直觉的、简约的 Api 设计
- 🔨 完整的 TypeScript 支持,更好的体验
- 创建几何对象
const pointGeometry = point<{ id: string }>([120.4737, 31.2304], {
id: "1",
});
const featureGeoJSON = feature<Point>(pointGeometry);
- 表示一个点和多个点的
FeatureCollection
集合:
type PointType = FeatureCollection<Point | MultiPoint, GeoJsonProperties<T>>;