BMFPolygon constructor
BMFPolygon({
- List<
BMFCoordinate> ? coordinates, - int? width = 5,
- Color? strokeColor = Colors.blue,
- Color? fillColor = Colors.red,
- BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
- List<
BMFHollowShape> ? hollowShapes, - bool? clickable = false,
- int zIndex = 0,
- bool visible = true,
- 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);