showHeatMap method

Future<bool> showHeatMap (
  1. bool show
)

显示热力图

show ture展示 false关闭

bool 成功返回true 失败false

Implementation

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