martin-core 0.9.0

Basic building blocks of MapLibre's Martin tile server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Allows decorating a rendered base map with overlays.

mod model;
pub use model::*;

#[cfg(all(feature = "rendering", target_os = "linux"))]
mod error;
#[cfg(all(feature = "rendering", target_os = "linux"))]
pub use error::ApplyError;

#[cfg(all(feature = "rendering", target_os = "linux"))]
mod apply;
#[cfg(all(feature = "rendering", target_os = "linux"))]
pub use apply::{AppliedOverlay, apply_to_style};