MarkerAnnotation constructor
MarkerAnnotation({})
Implementation
MarkerAnnotation({
required super.id,
required Offset position,
this.markerType = MarkerType.info,
this.markerSize = 24.0,
this.color = Colors.red,
this.tooltip,
int zIndex = 0,
bool isVisible = true,
super.selected = false,
super.isInteractive = true,
super.metadata,
}) : super(
type: 'marker',
initialPosition: position,
initialZIndex: zIndex,
initialIsVisible: isVisible,
);