1pub mod geometry; 2pub mod tag; 3pub mod tileid; 4pub mod vector_tile; 5pub mod webmercator; 6 7/// Tile coordinate in (z, x, y) format. 8pub type TileZXY = (u8, u32, u32);