Visualization
    Preparing search index...

    Interface ModLayer

    Represents an instance of a dynamic layer in a mod visualization.

    interface ModLayer {
        id: Guid;
        name: string;
        type: string;
        data(): DataView;
        data(name: string): DataView;
    }
    Index

    Properties

    Methods

    Properties

    id: Guid

    The id of the layer instance.

    name: string

    The name of the layer, show in the UI.

    type: string

    The type of the layer, as defined in the manifest.

    Methods