getMaxZoomLevel method

Future<int> getMaxZoomLevel ()

获取map的自定义最大比例尺级别

maxZoomLevel 自定义最大比例尺级别

Implementation

Future<int> getMaxZoomLevel() async {
  return await BMFMapDispatcherFactory.instance
      .getMapGetStateDispatcher()
      .getMaxZoomLevelDispatch(_mapChannel);
}