BMFGround constructor

BMFGround(
  1. {required String image,
  2. double? width,
  3. double? height,
  4. double? anchorX,
  5. double? anchorY,
  6. int? zoomLevel,
  7. BMFCoordinateBounds? bounds,
  8. BMFCoordinate? position,
  9. double? transparency = 1.0,
  10. bool? clickable = false,
  11. int zIndex = 0,
  12. bool visible = true,
  13. Map? customMap}
)

BMFGround构造方法

Implementation

BMFGround({
  required this.image,
  this.width,
  this.height,
  this.anchorX,
  this.anchorY,
  this.zoomLevel,
  this.bounds,
  this.position,
  this.transparency = 1.0,
  this.clickable = false,
  int zIndex = 0,
  bool visible = true,
  Map? customMap,
}) : super(zIndex: zIndex, visible: visible, customMap: customMap);