routers_tiles 0.1.3

Utilities to create tiles
Documentation
1
2
3
4
5
6
7
8
9
use schema::proto::mvt::Tile;

pub struct MVTTile(pub(crate) Tile);

impl From<MVTTile> for Tile {
    fn from(val: MVTTile) -> Self {
        val.0
    }
}