@vcmap/core
    Preparing search index...

    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,
            style: StyleLike,
            vectorProperties: VectorProperties,
            scene: Scene,
        ): Promise<void>;
        clear(): void;
        destroy(): void;
        hasFeature(feature: Feature): boolean;
        removeFeature(feature: Feature): void;
    }

    Implemented by

    Index

    Methods