BMFMarker constructor

BMFMarker(
  1. {@required BMFCoordinate position,
  2. @required String icon,
  3. String title,
  4. String subtitle,
  5. bool isLockedToScreen: false,
  6. BMFPoint screenPointToLock,
  7. String identifier,
  8. BMFPoint centerOffset,
  9. bool enabled3D,
  10. bool enabled: true,
  11. bool draggable: false,
  12. double scaleX: 1.0,
  13. double scaleY: 1.0,
  14. double alpha: 1.0,
  15. bool isPerspective,
  16. int zIndex: 0,
  17. bool visible: true}
)

BMFMarker构造方法

Implementation

BMFMarker({
  @required this.position,
  @required this.icon,
  this.title,
  this.subtitle,
  this.isLockedToScreen: false,
  this.screenPointToLock,
  this.identifier,
  this.centerOffset,
  this.enabled3D,
  this.enabled: true,
  this.draggable: false,
  this.scaleX: 1.0,
  this.scaleY: 1.0,
  this.alpha: 1.0,
  this.isPerspective,
  int zIndex: 0,
  bool visible: true,
}) : super(zIndex: zIndex, visible: visible);