Interface AttributeBinder
interface AttributeBinder {
destroy(): void;
populatePaintArray(
length: number,
feature: Feature,
options: PaintOptions,
): void;
updatePaintArray(
start: number,
length: number,
feature: Feature,
featureState: FeatureState,
options: PaintOptions,
): void;
upload(a: Context): void;
}
destroy(): void;
populatePaintArray(
length: number,
feature: Feature,
options: PaintOptions,
): void;
updatePaintArray(
start: number,
length: number,
feature: Feature,
featureState: FeatureState,
options: PaintOptions,
): void;
upload(a: Context): void;
}
Index
Methods
destroy
Returns void
populatePaintArray
Parameters
- length: number
- feature: Feature
- options: PaintOptions
Returns void
updatePaintArray
- updatePaintArray(
start: number,
length: number,
feature: Feature,
featureState: FeatureState,
options: PaintOptions,
): voidParameters
- start: number
- length: number
- feature: Feature
- featureState: FeatureState
- options: PaintOptions
Returns void
upload
Parameters
- a: Context
Returns void
Was this helpful?