MultiLineString3DGeometry

Type Alias MultiLineString3DGeometry 

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

MultiLineString3DGeometry contains multiple 3D lines

Aliased Type§

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

Fields§

§_type: GeometryType

The geometry type

§coordinates: Vec<Vec<Point3D>>

The geometry shape

§m_values: Option<Vec<Vec<M>>>

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape