你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
GeoJsonFeatureData interface
属性
feature |
功能的类型。 该值取决于当前特征所属的数据模型。 某些数据模型可能具有空值。 |
geometry | 有效的 |
id | 功能的标识符。 |
properties | 属性可以包含有关 |
属性详细信息
featureType
功能的类型。 该值取决于当前特征所属的数据模型。 某些数据模型可能具有空值。
featureType?: string
属性值
string
geometry
有效的 GeoJSON
geometry 对象。 该类型必须是七种有效的 GeoJSON 几何类型之一 - Point、MultiPoint、LineString、MultiLineString、Polygon、MultiPolygon 和 GeometryCollection。 有关详细信息,请参阅 RFC 7946 。
geometry: GeoJsonGeometry
属性值
id
功能的标识符。
id?: string
属性值
string
properties
属性可以包含有关 Feature
的任何其他元数据。 值可以是任何 JSON 对象或 JSON null 值
properties?: Record<string, unknown>
属性值
Record<string, unknown>