[][src]Struct mvt::TileId

pub struct TileId { /* fields omitted */ }

A tile ID identifies a tile on a map grid at a specific zoom level. It uses XYZ addressing, with X increasing from west to east and Y increasing from north to south. The X and Y values can range from 0 to 2Z-1.

Methods

impl TileId[src]

pub fn x(&self) -> u32[src]

Get the X value.

pub fn y(&self) -> u32[src]

Get the Y value.

pub fn z(&self) -> u32[src]

Get the Z (zoom) value.

impl TileId[src]

pub fn new(x: u32, y: u32, z: u32) -> Result<Self, Error>[src]

Create a new TildId.

If invalid, returns Error::InvalidTid.

Trait Implementations

impl Clone for TileId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for TileId[src]

impl Debug for TileId[src]

impl Display for TileId[src]

Auto Trait Implementations

impl Send for TileId

impl Sync for TileId

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]