ArView constructor
const
ArView({
- Key? key,
- required List<
ArAnnotation> annotations, - required AnnotationViewBuilder annotationViewBuilder,
- required Size frame,
- required ChangeLocationCallback onLocationChange,
- double annotationWidth = 200,
- double annotationHeight = 75,
- double maxVisibleDistance = 1500,
- bool showDebugInfoSensor = true,
- double paddingOverlap = 5,
- double? yOffsetOverlap,
- required double minDistanceReload,
- bool scaleWithDistance = true,
- Color? markerColor,
- Color? backgroundRadar,
- RadarPosition? radarPosition,
- bool showRadar = true,
- double? radarWidth,
Implementation
const ArView({
super.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,
});