dioxus-maplibre 0.0.7

MapLibre GL JS wrapper for Dioxus 0.7
Documentation
1
2
3
4
5
6
7
8
9
10
//! Style-related MapHandle methods.

use super::MapHandle;

impl MapHandle {
    /// Change the map's style URL
    pub fn set_style(&self, url: &str) {
        self.fire_and_forget(|| crate::interop::set_style_js(&self.map_id, url));
    }
}