Type Alias rust::geometry::LineStringGeometry  
source · pub type LineStringGeometry = BaseGeometry<LineString, LineStringMValues, BBox>;Expand description
LineStringGeometry is a line
Aliased Type§
struct LineStringGeometry {
    pub coordinates: Vec<(f64, f64)>,
    pub m_values: Option<Vec<BTreeMap<String, Value>>>,
    pub bbox: Option<BBox>,
}Fields§
§coordinates: Vec<(f64, f64)>The geometry shape
m_values: Option<Vec<BTreeMap<String, Value>>>The M-Values shape
bbox: Option<BBox>The BBox shape