LineString3DGeometry

Type Alias LineString3DGeometry 

Source
pub type LineString3DGeometry<M = Map<String, ValueType>> = BaseGeometry<Vec<M>, Vec<Point3D>, BBox3D>;
Expand description

LineString3DGeometry is a 3D line

Aliased Type§

pub struct LineString3DGeometry<M = Map<String, ValueType>> {
    pub _type: GeometryType,
    pub coordinates: Vec<Point3D>,
    pub m_values: Option<Vec<M>>,
    pub bbox: Option<BBox3D>,
}

Fields§

§_type: GeometryType

The geometry type

§coordinates: Vec<Point3D>

The geometry shape

§m_values: Option<Vec<M>>

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape