ArView constructor

const ArView({
  1. Key? key,
  2. required List<ArAnnotation> annotations,
  3. required AnnotationViewBuilder annotationViewBuilder,
  4. required Size frame,
  5. required ChangeLocationCallback onLocationChange,
  6. double annotationWidth = 200,
  7. double annotationHeight = 75,
  8. double maxVisibleDistance = 1500,
  9. bool showDebugInfoSensor = true,
  10. double paddingOverlap = 5,
  11. double? yOffsetOverlap,
  12. required double minDistanceReload,
  13. bool scaleWithDistance = true,
  14. Color? markerColor,
  15. Color? backgroundRadar,
  16. RadarPosition? radarPosition,
  17. bool showRadar = true,
  18. double? radarWidth,
})

Implementation

const ArView({
  Key? key,
  required this.annotations,
  required this.annotationViewBuilder,
  required this.frame,
  required this.onLocationChange,
  this.annotationWidth = 200,
  this.annotationHeight = 75,
  this.maxVisibleDistance = 1500,
  this.showDebugInfoSensor = true,
  this.paddingOverlap = 5,
  this.yOffsetOverlap,
  required this.minDistanceReload,
  this.scaleWithDistance = true,
  this.markerColor,
  this.backgroundRadar,
  this.radarPosition,
  this.showRadar = true,
  this.radarWidth,
}) : super(key: key);