Disposable Map Effect
fun DisposableMapEffect(key1: Any?, block: DisposableEffectScope.(MapView) -> DisposableEffectResult)
fun DisposableMapEffect(key1: Any?, key2: Any?, block: DisposableEffectScope.(MapView) -> DisposableEffectResult)
fun DisposableMapEffect(key1: Any?, key2: Any?, key3: Any?, block: DisposableEffectScope.(MapView) -> DisposableEffectResult)
fun DisposableMapEffect(vararg keys: Any?, block: DisposableEffectScope.(MapView) -> DisposableEffectResult)
DisposableMapEffect is a DisposableEffect that provides the raw map controller. Use this API to interact with all the raw Mapbox Maps SDK APIs.
Note: Use raw map controller with caution, as it may alter the map state without notifying the compose node tree and result in unexpected behaviour.