Interface BuildingGeometryParameters

Hierarchy

  • BuildingGeometryParameters

Properties

Properties

coordinates: number[][][] | number[][][][]

几何体坐标点,采用geojson格式 支持两种格式 本地坐标和经纬度坐标 "type": "Polygon", "coordinates": [ [[0, 0], [40, 0], [40, 40], [0, 40], [0, 0]],// 几何体形状 // [[10, 10], [20, 10], [20, 20], [10, 20], [10, 10]]// 洞的形状 一个几何体中 除了第一个数组 后面的数组都是洞的形状 ] "type": "MultiPolygon", "coordinates": [ [ [ [116.3302443, 39.9430279], [116.3302443, 39.9430279] ] ], [ [ [116.3284217, 39.941362], [116.3284217, 39.941362] ] ] ]

Memberof

BuildingBaseParameters

type: string

几何体的类型,必填 支持 Polygon MultiPolygon

Memberof

BuildingBaseParameters