zoomOut method

Future<bool> zoomOut ()

map缩小一级比例尺

bool 成功返回true 失败false

Implementation

Future<bool> zoomOut() async {
  return await BMFMapDispatcherFactory.instance
      .getMapStateDispatcher()
      .zoomOutDispatch(_mapChannel);
}