LabelLayerOptions constructor

const LabelLayerOptions({
  1. MarkerWidgetBuilder? builder,
  2. Alignment alignment = Alignment.bottomRight,
  3. bool rotate = true,
  4. bool hideOnEdit = false,
  5. EdgeInsets? margin,
  6. CollisionStrategy strategy = const StickyGoldenFanStrategy(hysteresisPx: 3.0),
  7. CollisionOptions collision = const CollisionOptions(),
})

Implementation

const LabelLayerOptions({
  super.builder,
  super.alignment = Alignment.bottomRight,
  super.rotate = true,
  this.hideOnEdit = false,
  this.margin,
  this.strategy = const StickyGoldenFanStrategy(hysteresisPx: 3.0),
  this.collision = const CollisionOptions(),
});