PointAnnotation constructor

PointAnnotation(
  1. {required String id,
  2. Map<String?, Object?>? geometry,
  3. Uint8List? image,
  4. IconAnchor? iconAnchor,
  5. String? iconImage,
  6. List<double?>? iconOffset,
  7. double? iconRotate,
  8. double? iconSize,
  9. double? symbolSortKey,
  10. TextAnchor? textAnchor,
  11. String? textField,
  12. TextJustify? textJustify,
  13. double? textLetterSpacing,
  14. double? textMaxWidth,
  15. List<double?>? textOffset,
  16. double? textRadialOffset,
  17. double? textRotate,
  18. double? textSize,
  19. TextTransform? textTransform,
  20. int? iconColor,
  21. double? iconHaloBlur,
  22. int? iconHaloColor,
  23. double? iconHaloWidth,
  24. double? iconOpacity,
  25. int? textColor,
  26. double? textHaloBlur,
  27. int? textHaloColor,
  28. double? textHaloWidth,
  29. double? textOpacity}
)

Implementation

PointAnnotation({
  required this.id,
  this.geometry,
  this.image,
  this.iconAnchor,
  this.iconImage,
  this.iconOffset,
  this.iconRotate,
  this.iconSize,
  this.symbolSortKey,
  this.textAnchor,
  this.textField,
  this.textJustify,
  this.textLetterSpacing,
  this.textMaxWidth,
  this.textOffset,
  this.textRadialOffset,
  this.textRotate,
  this.textSize,
  this.textTransform,
  this.iconColor,
  this.iconHaloBlur,
  this.iconHaloColor,
  this.iconHaloWidth,
  this.iconOpacity,
  this.textColor,
  this.textHaloBlur,
  this.textHaloColor,
  this.textHaloWidth,
  this.textOpacity,
});