Type Alias PolygonGeometry

Source
pub type PolygonGeometry = BaseGeometry<Polygon, PolygonMValues, BBox>;
Expand description

PolygonGeometry is a polygon with potential holes

Aliased Type§

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

Fields§

§_type: GeometryType

The geometry type

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

The geometry shape

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

The M-Values shape

§bbox: Option<BBox>

The BBox shape