Type Alias rust::geometry::MultiLineStringGeometry

source ·
pub type MultiLineStringGeometry = BaseGeometry<MultiLineString, MultiLineStringMValues, BBox>;
Expand description

MultiLineStringGeometry contains multiple lines

Aliased Type§

struct MultiLineStringGeometry {
    pub coordinates: Vec<Vec<(f64, f64)>>,
    pub m_values: Option<Vec<Vec<BTreeMap<String, Value>>>>,
    pub bbox: Option<BBox>,
}

Fields§

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

The geometry shape

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

The M-Values shape

§bbox: Option<BBox>

The BBox shape