LocationIndicatorLayer constructor

LocationIndicatorLayer(
  1. {required String id,
  2. Visibility? visibility,
  3. double? minZoom,
  4. double? maxZoom,
  5. String? slot,
  6. String? bearingImage,
  7. String? shadowImage,
  8. String? topImage,
  9. double? accuracyRadius,
  10. int? accuracyRadiusBorderColor,
  11. int? accuracyRadiusColor,
  12. double? bearing,
  13. double? bearingImageSize,
  14. int? emphasisCircleColor,
  15. double? emphasisCircleRadius,
  16. double? imagePitchDisplacement,
  17. List<double?>? location,
  18. double? locationIndicatorOpacity,
  19. double? perspectiveCompensation,
  20. double? shadowImageSize,
  21. double? topImageSize}
)

Implementation

LocationIndicatorLayer({
  required String id,
  Visibility? visibility,
  double? minZoom,
  double? maxZoom,
  String? slot,
  this.bearingImage,
  this.shadowImage,
  this.topImage,
  this.accuracyRadius,
  this.accuracyRadiusBorderColor,
  this.accuracyRadiusColor,
  this.bearing,
  this.bearingImageSize,
  this.emphasisCircleColor,
  this.emphasisCircleRadius,
  this.imagePitchDisplacement,
  this.location,
  this.locationIndicatorOpacity,
  this.perspectiveCompensation,
  this.shadowImageSize,
  this.topImageSize,
}) : super(
          id: id,
          visibility: visibility,
          maxZoom: maxZoom,
          minZoom: minZoom,
          slot: slot);