Type Alias s2_tilejson::TileBounds

source ·
pub type TileBounds = BBox<u64>;
Expand description

Use bounds as u64 for the tile index range

Aliased Type§

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

Fields§

§left: u64

left most point; Also represents the left-most longitude

§bottom: u64

bottom most point; Also represents the bottom-most latitude

§right: u64

right most point; Also represents the right-most longitude

§top: u64

top most point; Also represents the top-most latitude