getMaxZoomLevel method Null safety

Future<int?> getMaxZoomLevel()

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

maxZoomLevel 自定义最大比例尺级别

Implementation

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