1//! Style-related MapHandle methods. 2 3use super::MapHandle; 4 5impl MapHandle { 6 /// Change the map's style URL 7 pub fn set_style(&self, url: &str) { 8 self.fire_and_forget(|| crate::interop::set_style_js(&self.map_id, url)); 9 } 10}