interface GetPaintCallback<F> {
    paint?: CirclePaint | PathPaint | PinPaint;
    type?: PaintType;
    (feature: F): VectorAdapterLayerPaint;
}

Type Parameters

  • F extends Feature = Feature

Properties

Properties

type?: PaintType