GraticuleConfig constructor

const GraticuleConfig({
  1. double latitudeStep = 10.0,
  2. double longitudeStep = 10.0,
  3. double minLatitude = -90.0,
  4. double maxLatitude = 90.0,
  5. double minLongitude = -180.0,
  6. double maxLongitude = 180.0,
  7. int precision = 100,
})

Creates a graticule configuration.

Implementation

const GraticuleConfig({
  this.latitudeStep = 10.0,
  this.longitudeStep = 10.0,
  this.minLatitude = -90.0,
  this.maxLatitude = 90.0,
  this.minLongitude = -180.0,
  this.maxLongitude = 180.0,
  this.precision = 100,
});