#![allow(clippy::needless_pass_by_value)]
use super::MapHandle;
use crate::options::PopupOptions;
use crate::types::LatLng;
impl MapHandle {
pub fn add_popup(&self, id: &str, position: LatLng, html: &str, options: PopupOptions) {
self.fire_and_forget(|| {
let json = serde_json::to_string(&options).unwrap_or_default();
crate::interop::add_popup_js(&self.map_id, id, position.lat, position.lng, html, &json)
});
}
pub fn remove_popup(&self, id: &str) {
self.fire_and_forget(|| crate::interop::remove_popup_js(&self.map_id, id));
}
}