versatiles_geometry 4.4.0

A toolbox for converting, checking and serving map tiles in various formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Feature/property layer of the `versatiles_geometry` crate.
//!
//! This module exposes [`GeoFeature`], [`GeoCollection`], [`GeoProperties`], and
//! [`GeoValue`]. Geometry primitives themselves come from `geo_types` (re-exported
//! from this crate's root); helpers in [`crate::ext`] provide projection, GeoJSON
//! output, and validation over those primitives.

#![allow(clippy::module_inception)]

mod collection;
mod feature;
mod properties;
mod value;

pub use collection::*;
pub use feature::*;
pub use properties::*;
pub use value::*;