TileBounds

Type Alias TileBounds 

Source
pub type TileBounds = BBox<u64>;
Expand description

Use bounds as u64 for the tile index range

Aliased Type§

pub struct TileBounds {
    pub left: u64,
    pub bottom: u64,
    pub right: u64,
    pub top: u64,
}

Fields§

§left: u64

left most longitude (WM) or S (S2)

§bottom: u64

bottom most latitude (WM) or T (S2)

§right: u64

right most longitude (WM) or T (S2)

§top: u64

top most latitude (WM) or S (S2)