pub type VectorLineStringGeometry<M = Map<String, ValueType>> = VectorBaseGeometry<Vec<VectorPoint<M>>, f64>;Expand description
LineStringGeometry is a line
Aliased Type§
pub struct VectorLineStringGeometry<M = Map<String, ValueType>> {
pub _type: VectorGeometryType,
pub is_3d: bool,
pub coordinates: Vec<VectorPoint<M>>,
pub offset: Option<f64>,
pub bbox: Option<BBox3D>,
pub vec_bbox: Option<BBox3D>,
pub indices: Option<Vec<u32>>,
pub tessellation: Option<Vec<f64>>,
}Fields§
§_type: VectorGeometryTypeThe geometry type
is_3d: boolSpecifies if the geometry is 3D or 2D
coordinates: Vec<VectorPoint<M>>The geometry shape
offset: Option<f64>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
tessellation: Option<Vec<f64>>Polygon and MultiPolygon specific property