showBaseIndoorMap method

Future<bool> showBaseIndoorMap (
  1. bool show
)

是否展示室内地图

show 展示true 隐藏false

bool 成功返回true 失败false

Implementation

Future<bool> showBaseIndoorMap(bool show) async {
  return await BMFMapDispatcherFactory.instance
      .getMapStateDispatcher()
      .showBaseIndoorMapDispatch(_mapChannel, show);
}