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

    Class ElevationLayer<UserData>

    A layer that provides elevation data to display terrains.

    Type Parameters

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    backgroundColor: Color
    colorMap: ColorMap | null = null

    The colormap of this layer

    computeMinMax: boolean
    extent: Extent | null = null

    The extent of this layer

    frozen: boolean = false

    Disables automatic updates of this layer. Useful for debugging purposes.

    id: string

    The unique identifier of this layer.

    interpretation: Interpretation
    isElevationLayer: boolean = true

    Read-only flag to check if a given object is of type ElevationLayer.

    isLayer: boolean = true

    Read-only flag to check if a given object is of type Layer.

    isMemoryUsage: true = ...

    Readonly flag to indicate that his object implements MemoryUsage.

    minmax: { isDefault?: boolean; max: number; min: number }
    name: string | undefined

    Optional name of this layer.

    noDataOptions: NoDataOptions
    resolutionFactor: number

    The resolution factor applied to the textures generated by this layer.

    showEmptyTextures: boolean
    showTileBorders: boolean
    source: ImageSource

    The source of this layer

    type: string
    userData: UserData

    An object that can be used to store custom data about the Layer.

    Accessors

    • get loading(): boolean

      Gets whether the object is currently performing an asynchronous operation.

      Returns boolean

    • get progress(): number

      Returns the percentage of progress, in normalized value (i.e in the [0, 1] range), of the asynchronous operations that are scheduled to run on this object. 1 means that all operations have finished.

      Returns number

    Methods

    • Adjusts the extent to avoid visual artifacts.

      Parameters

      • originalExtent: Extent

        The original extent.

      • originalWidth: number

        The width, in pixels, of the original extent.

      • originalHeight: number

        The height, in pixels, of the original extent.

      Returns GridExtent

      And object containing the adjusted extent, as well as adjusted pixel size.

    • Immediately applies a temporary texture to the target while the actual texture is being asynchronously processed, to avoid displaying a black texture.

      Parameters

      Returns void

    • Resets all render targets to a blank state and repaint all the targets.

      Parameters

      • Optionalextent: Extent

        An optional extent to limit the region to clear.

      Returns void

    • Returns the final extent of this layer. If this layer has its own extent defined, this will be used. Otherwise, will return the source extent (if any). May return undefined if not pre-processed yet.

      Returns Extent | undefined

      The layer final extent.

    • Get the pixels colors of this layer at coordinate. This will samples all pixel colors within a square region of specified size, centered at the given coordinate. Returns undefined if no non-transparent (colored) pixels are found, or if no texture is available for this coordinate.

      Note: only 8-bit layers are supported. If the layer has non 8-bit pixels, returns undefined.

      Parameters

      • params: { coordinates: Coordinates; size?: number }
        • coordinates: Coordinates

          The coordinate to sample.

        • Optionalsize?: number

          The size, in pixels, of the square to sample

          1
          

      Returns Color[] | undefined

      The colors

    • Returns true if this layer has loaded data for this node.

      Parameters

      • nodeId: number

      Returns boolean