slint-mapping 0.1.0

Map framework for Slint — interactive map component with tile rendering, panning, zooming, and marker overlays.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Concrete [`crate::Router`] implementations.
//!
//! Each adapter lives in its own submodule and is re-exported at this
//! module's root. Adding a new routing engine = drop a file in this
//! directory, register it here. Mirrors the layout of
//! [`crate::sources`] for tile sources.

#[cfg(feature = "routing")]
mod osrm;
#[cfg(feature = "routing")]
pub use osrm::{OsrmRouter, OSRM_DEMO_URL};