[][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. Use default() for Web Mercator.

Implementations

impl MapGrid[src]

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

Create a new map grid.

  • srid Spatial reference ID.
  • bbox Bounding box.

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) -> Transform64[src]

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

Trait Implementations

impl Clone for MapGrid[src]

impl Debug for MapGrid[src]

impl Default for MapGrid[src]

Auto Trait Implementations

impl RefUnwindSafe for MapGrid

impl Send for MapGrid

impl Sync for MapGrid

impl Unpin for MapGrid

impl UnwindSafe for MapGrid

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.