BMFPolygon constructor

BMFPolygon(
  1. {List<BMFCoordinate>? coordinates,
  2. int? width = 5,
  3. Color? strokeColor = Colors.blue,
  4. Color? fillColor = Colors.red,
  5. BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
  6. List<BMFHollowShape>? hollowShapes,
  7. bool? clickable = false,
  8. int zIndex = 0,
  9. bool visible = true,
  10. Map? customMap}
)

BMFPolygon构造方法

Implementation

BMFPolygon({
  this.coordinates,
  this.width = 5,
  this.strokeColor = Colors.blue,
  this.fillColor = Colors.red,
  this.lineDashType = BMFLineDashType.LineDashTypeNone,
  this.hollowShapes,
  this.clickable = false,
  int zIndex = 0,
  bool visible = true,
  Map? customMap,
}) : super(zIndex: zIndex, visible: visible, customMap: customMap);