GeoJsonFeatureDataOutput interface
属性
| feature |
功能的类型。 该值取决于当前功能所属的数据模型。 某些数据模型可能具有空值。 |
| geometry | 有效的 |
| id | 功能的标识符。 |
| properties | 属性可以包含有关 |
属性详细信息
featureType
功能的类型。 该值取决于当前功能所属的数据模型。 某些数据模型可能具有空值。
featureType?: string
属性值
string
geometry
有效的 GeoJSON 几何图形对象。 该类型必须是七种有效的 GeoJSON 几何类型之一 - Point、MultiPoint、LineString、MultiLineString、Polygon、MultiPolygon 和 GeometryCollection。 有关详细信息,请参阅 RFC 7946。
geometry: GeoJsonGeometryOutput
属性值
id
功能的标识符。
id?: string
属性值
string
properties
属性可以包含有关 Feature的任何其他元数据。 值可以是任何 JSON 对象,也可以是 JSON null 值
properties?: Record<string, unknown>
属性值
Record<string, unknown>