pub struct BBox {
pub left: f64,
pub bottom: f64,
pub right: f64,
pub top: f64,
}
Expand description
A BBOX is defined in lon-lat space and helps with zooming motion to see the entire line or polygon
Fields§
§left: f64
left most longitude (WG) or S (S2)
bottom: f64
bottom most latitude (WG) or T (S2)
right: f64
right most longitude (WG) or T (S2)
top: f64
top most latitude (WG) or S (S2)
Trait Implementations§
source§impl PartialEq for BBox
impl PartialEq for BBox
impl StructuralPartialEq for BBox
Auto Trait Implementations§
impl Freeze for BBox
impl RefUnwindSafe for BBox
impl Send for BBox
impl Sync for BBox
impl Unpin for BBox
impl UnwindSafe for BBox
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more