BMFTile constructor

BMFTile(
  1. {required BMFCoordinateBounds visibleMapBounds,
  2. required BMFTileLoadType tileLoadType,
  3. int? maxZoom,
  4. int? minZoom,
  5. int? maxTileTmp,
  6. String? url,
  7. int zIndex = 0,
  8. bool visible = true,
  9. Map? customMap}
)

BMFTile构造方法

Implementation

BMFTile({
  required this.visibleMapBounds,
  required this.tileLoadType,
  this.maxZoom,
  this.minZoom,
  this.maxTileTmp,
  this.url,
  int zIndex = 0,
  bool visible = true,
  Map? customMap,
}) : super(zIndex: zIndex, visible: visible, customMap: customMap);