SymbolOptions constructor

const SymbolOptions({
  1. double? iconSize,
  2. String? iconImage,
  3. double? iconRotate,
  4. Offset? iconOffset,
  5. String? iconAnchor,
  6. List<String>? fontNames,
  7. String? textField,
  8. double? textSize,
  9. double? textMaxWidth,
  10. double? textLetterSpacing,
  11. String? textJustify,
  12. String? textAnchor,
  13. double? textRotate,
  14. String? textTransform,
  15. Offset? textOffset,
  16. double? iconOpacity,
  17. String? iconColor,
  18. String? iconHaloColor,
  19. double? iconHaloWidth,
  20. double? iconHaloBlur,
  21. double? textOpacity,
  22. String? textColor,
  23. String? textHaloColor,
  24. double? textHaloWidth,
  25. double? textHaloBlur,
  26. LatLng? geometry,
  27. int? zIndex,
  28. bool? draggable,
  29. String? eLoc,
})

Creates a set of symbol configuration options.

By default, every non-specified field is null, meaning no desire to change symbol defaults or current configuration.

Implementation

const SymbolOptions({
  this.iconSize,
  this.iconImage,
  this.iconRotate,
  this.iconOffset,
  this.iconAnchor,
  this.fontNames,
  this.textField,
  this.textSize,
  this.textMaxWidth,
  this.textLetterSpacing,
  this.textJustify,
  this.textAnchor,
  this.textRotate,
  this.textTransform,
  this.textOffset,
  this.iconOpacity,
  this.iconColor,
  this.iconHaloColor,
  this.iconHaloWidth,
  this.iconHaloBlur,
  this.textOpacity,
  this.textColor,
  this.textHaloColor,
  this.textHaloWidth,
  this.textHaloBlur,
  this.geometry,
  this.zIndex,
  this.draggable,
  this.eLoc
});