API (v2.0.0) - Giro3D
    Preparing search index...

    Interface VectorSourceOptions

    interface VectorSourceOptions {
        colorSpace?: ColorSpace;
        containsFn?: CustomContainsFn;
        data?: DataSource;
        dataProjection?: CoordinateSystem;
        flipY?: boolean;
        is8bit?: boolean;
        requestPriority?: RequestPriority;
        style?: Style | Style[] | StyleFunction;
        synchronous?: boolean;
        transparent?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    colorSpace?: ColorSpace

    The custom color space of the generated textures. See https://threejs.org/docs/#manual/en/introduction/Color-management for more information. If unspecified, the source considers that 8-bit images are in the sRGB color space, otherwise NoColorSpace.

    containsFn?: CustomContainsFn

    The custom function to test if a given extent is contained in this source. Note: we assume this function accepts extents in this source's CRS.

    data?: DataSource

    The data content.

    dataProjection?: CoordinateSystem

    The projection of the data source. Must be specified if the source does not have the same projection as the Giro3D instance.

    flipY?: boolean

    Should images be flipped vertically during composition ?

    is8bit?: boolean

    The data type of images generated. For regular color images, this should be true. For images with a high dynamic range, or images that requires additional processing, this should be false.

    requestPriority?: RequestPriority

    The relative priority of HTTP requests emitted by this source.

    'auto'

    style?: Style | Style[] | StyleFunction

    The style(s), or style function.

    synchronous?: boolean

    Is this source able to generate images synchronously ?

    transparent?: boolean

    Should the generated images be considered transparent ?

    false