[][src]Struct mvt::MapGrid

pub struct MapGrid { /* fields omitted */ }

A map grid is used to address tiles on a map. The grid should be in projected coördinates.

Methods

impl MapGrid[src]

pub fn new(srid: i32, bbox: BBox) -> Self[src]

Create a new map grid.

pub fn new_web_mercator() -> Self[src]

Create a new map grid using web mercator coördinates.

pub fn srid(&self) -> i32[src]

Get the spatial reference ID.

pub fn bbox(&self) -> BBox[src]

Get the bounding box of the grid.

pub fn tile_bbox(&self, tid: TileId) -> BBox[src]

Get the bounding box of a tile ID.

pub fn tile_transform(&self, tid: TileId) -> Transform[src]

Get the transform to coördinates in 0 to 1 range.

Auto Trait Implementations

impl Send for MapGrid

impl Sync for MapGrid

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut 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.