cartography 0.11.1

Cartography is a map rendering library for Geographic features expressed using [georust](https://georust.org/) libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! OSM PBF integration

pub mod feature;
pub mod layer;
mod simplify;
pub mod stitching;
pub mod tags;

pub use feature::OsmFeature;
pub use layer::read_pbf;
pub use simplify::{filter_layer_by_min_bbox, simplify_layer};