Type Alias CesiumMapOptions

CesiumMapOptions: VcsMapOptions & {
    cameraLimiter?: CameraLimiterOptions;
    contextOptions?: ContextOptions;
    enableLightning?: boolean;
    globeColor?: string;
    lightIntensity?: number;
    tileCacheSize?: number;
    useOriginalCesiumShader?: boolean;
    webGLaa?: boolean;
}

Type declaration

  • OptionalcameraLimiter?: CameraLimiterOptions
  • OptionalcontextOptions?: ContextOptions

    can be used to forward contextOptions to the CesiumWidget https://cesium.com/learn/cesiumjs/ref-doc/global.html#ContextOptions

  • OptionalenableLightning?: boolean

    if true, lighting will be activated.

  • OptionalglobeColor?: string

    the color of the globe, if no image is provided

  • OptionallightIntensity?: number

    changes the default Cesium Sunlight Intensity (default is 3.0) Cesium Default is 2.0

  • OptionaltileCacheSize?: number

    the tilecache size of cesium terrain and tile layer

  • OptionaluseOriginalCesiumShader?: boolean

    use Original Cesium Shader, otherwise the VCS Customized Shader will be used. This is a global Setting for all VCMap Instances on the same page.

  • OptionalwebGLaa?: boolean

    activates webGL antialiasing (not every Browser respects this value)