Type Alias MultiLineString3DGeometry

Source
pub type MultiLineString3DGeometry = BaseGeometry<MultiLineString3D, MultiLineStringMValues, BBox3D>;
Expand description

MultiLineString3DGeometry contains multiple 3D lines

Aliased Type§

struct MultiLineString3DGeometry {
    pub _type: GeometryType,
    pub coordinates: Vec<Vec<(f64, f64, f64)>>,
    pub m_values: Option<Vec<Vec<BTreeMap<String, ValueType>>>>,
    pub bbox: Option<BBox3D>,
}

Fields§

§_type: GeometryType

The geometry type

§coordinates: Vec<Vec<(f64, f64, f64)>>

The geometry shape

§m_values: Option<Vec<Vec<BTreeMap<String, ValueType>>>>

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape