GeoJsonFeatureOutputParent interface
A valid GeoJSON Feature
object type. Please refer to RFC 7946 for details.
- Extends
Properties
type |
Inherited Properties
bbox | Bounding box. Projection used - EPSG:3857. Please refer to RFC 7946 for details. |
feature |
The type of the feature. The value depends on the data model the current feature is part of. Some data models may have an empty value. |
geometry | A valid |
id | Identifier for the feature. |
properties | Properties can contain any additional metadata about the |
Property Details
type
type: "Boundary" | "Feature"
Property Value
"Boundary" | "Feature"
Inherited Property Details
bbox
Bounding box. Projection used - EPSG:3857. Please refer to RFC 7946 for details.
bbox?: number[]
Property Value
number[]
Inherited From GeoJsonObjectOutputParent.bbox
featureType
The type of the feature. The value depends on the data model the current feature is part of. Some data models may have an empty value.
featureType?: string
Property Value
string
Inherited From GeoJsonFeatureDataOutput.featureType
geometry
A valid GeoJSON
geometry object. The type must be one of the seven valid GeoJSON geometry types - Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon and GeometryCollection. Please refer to RFC 7946 for details.
geometry: GeoJsonGeometryOutput
Property Value
Inherited From GeoJsonFeatureDataOutput.geometry
id
Identifier for the feature.
id?: string
Property Value
string
Inherited From GeoJsonFeatureDataOutput.id
properties
Properties can contain any additional metadata about the Feature
. Value can be any JSON object or a JSON null value
properties?: Record<string, unknown>
Property Value
Record<string, unknown>
Inherited From GeoJsonFeatureDataOutput.properties
Azure SDK for JavaScript