LocationMarkerStyle constructor

const LocationMarkerStyle({
  1. Widget marker = const DefaultLocationMarker(),
  2. Size markerSize = const Size.square(20),
  3. MarkerDirection markerDirection = MarkerDirection.top,
  4. bool showAccuracyCircle = true,
  5. Color accuracyCircleColor = const Color(0x182196F3),
  6. bool showHeadingSector = true,
  7. double headingSectorRadius = 60,
  8. Color headingSectorColor = const Color(0xCC2196F3),
})

Create a LocationMarkerStyle.

Implementation

const LocationMarkerStyle({
  this.marker = const DefaultLocationMarker(),
  this.markerSize = const Size.square(20),
  this.markerDirection = MarkerDirection.top,
  this.showAccuracyCircle = true,
  this.accuracyCircleColor = const Color(0x182196F3),
  this.showHeadingSector = true,
  this.headingSectorRadius = 60,
  this.headingSectorColor = const Color(0xCC2196F3),
});