LocationIndicatorLayer constructor

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

Implementation

LocationIndicatorLayer({
  required id,
  visibility,
  minZoom,
  maxZoom,
  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.perspectiveCompensation,
  this.shadowImageSize,
  this.topImageSize,
}) : super(
          id: id, visibility: visibility, maxZoom: maxZoom, minZoom: minZoom);