Type Alias VectorPointGeometry

Source
pub type VectorPointGeometry = VectorBaseGeometry<VectorPoint>;
Expand description

PointGeometry is a point

Aliased Type§

struct VectorPointGeometry {
    pub _type: VectorGeometryType,
    pub is_3d: bool,
    pub coordinates: VectorPoint,
    pub offset: Option<VectorOffsets>,
    pub bbox: Option<BBox3D>,
    pub vec_bbox: Option<BBox3D>,
    pub indices: Option<Vec<u32>>,
    pub tesselation: Option<f64>,
}

Fields§

§_type: VectorGeometryType

The geometry type

§is_3d: bool

Specifies if the geometry is 3D or 2D

§coordinates: VectorPoint

The geometry shape

§offset: Option<VectorOffsets>

The geometry offsets if applicable

§bbox: Option<BBox3D>

The BBox shape - always in lon-lat

§vec_bbox: Option<BBox3D>

temporary bbox to track 0->1 clipping

§indices: Option<Vec<u32>>

Polygon and MultiPolygon specific property

§tesselation: Option<f64>

Polygon and MultiPolygon specific property