Interface CesiumVectorContext

The context for vector rendering in cesium. Creates 1 to N primitives / models / billboards / labels for each feature added to the context depending on its style & vector properties. Uses the feature converters convert function under the hood to create the primitives.

interface CesiumVectorContext {
    addFeature(feature: Feature<Geometry>, style: StyleLike, vectorProperties: VectorProperties, scene: Scene): Promise<void>;
    clear(): void;
    destroy(): void;
    hasFeature(feature: Feature<Geometry>): boolean;
    removeFeature(feature: Feature<Geometry>): void;
}

Implemented by

Methods