BMFGround constructor
BMFGround({
- required String image,
- double? width,
- double? height,
- double? anchorX,
- double? anchorY,
- int? zoomLevel,
- BMFCoordinateBounds? bounds,
- BMFCoordinate? position,
- double? transparency = 1.0,
- bool? clickable = false,
- int zIndex = 0,
- bool visible = true,
- 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);