dioxus-maplibre 0.0.7

MapLibre GL JS wrapper for Dioxus 0.7
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Dioxus components and hooks for MapLibre GL JS.

mod context;
mod declarative;
#[cfg(target_arch = "wasm32")]
mod event_dispatch;
pub mod map;

pub use context::use_map_handle;
pub use declarative::{
    MapControl, MapControlKind, MapLayer, MapMarker, MapPopup, MapSource, MapSourceKind,
};
pub use map::Map;