open-vector-tile 1.11.1

This library reads/writes The Open Vector Tiles 1.0 Specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Taking s2json type geometry and creating base features
pub mod s2json_impl;
/// Base Features covering 2D and 3D for points, lines, and polygons
pub mod vector_feature;
///  A base layer for all vector features
pub mod vector_layer;
/// A Tile container for all base vector layers
pub mod vector_tile;

pub use s2json_impl::*;
pub use vector_feature::*;
pub use vector_layer::*;
pub use vector_tile::*;