Marker constructor
Marker(- {@required LatLng position,
- double alpha: 1.0,
- Offset anchor: const Offset(0.5, 0.5),
- bool clickable: true,
- bool draggable: false,
- BitmapDescriptor icon: BitmapDescriptor.defaultMarker,
- bool infoWindowEnable: true,
- InfoWindow infoWindow: InfoWindow.noText,
- double rotation: 0.0,
- bool visible: true,
- double zIndex: 0.0,
- ArgumentCallback<String> onTap,
- MarkerDragEndCallback onDragEnd}
)
Implementation
Marker({
@required this.position,
this.alpha = 1.0,
this.anchor = const Offset(0.5, 0.5),
this.clickable = true,
this.draggable = false,
this.icon = BitmapDescriptor.defaultMarker,
this.infoWindowEnable = true,
this.infoWindow = InfoWindow.noText,
this.rotation = 0.0,
this.visible = true,
this.zIndex = 0.0,
this.onTap,
this.onDragEnd,
}) : assert(position != null),
assert(alpha == null || (0.0 <= alpha && alpha <= 1.0)),
super();