open_vector_tile/base/mod.rs
1/// Taking s2json type geometry and creating base features
2pub mod s2json_impl;
3/// Base Features covering 2D and 3D for points, lines, and polygons
4pub mod vector_feature;
5/// A base layer for all vector features
6pub mod vector_layer;
7/// A Tile container for all base vector layers
8pub mod vector_tile;
9
10pub use s2json_impl::*;
11pub use vector_feature::*;
12pub use vector_layer::*;
13pub use vector_tile::*;