GeoGraticule constructor

const GeoGraticule({
  1. Key? key,
  2. required Projection projection,
  3. GraticuleConfig config = const GraticuleConfig(),
  4. Color color = const Color(0x40000000),
  5. double strokeWidth = 0.5,
  6. bool antiAlias = true,
})

Creates a GeoGraticule widget.

Implementation

const GeoGraticule({
  super.key,
  required this.projection,
  this.config = const GraticuleConfig(),
  this.color = const Color(0x40000000),
  this.strokeWidth = 0.5,
  this.antiAlias = true,
});