showBaseIndoorMapPoi method

Future<bool> showBaseIndoorMapPoi (
  1. bool showPoi
)

室内图标注是否显示

showPoi 展示true 隐藏false

bool 成功返回true 失败false

Implementation

Future<bool> showBaseIndoorMapPoi(bool showPoi) async {
  return await BMFMapDispatcherFactory.instance
      .getMapStateDispatcher()
      .showBaseIndoorMapPoiDispatch(_mapChannel, showPoi);
}