gis-tools-ts - v0.6.0
    Preparing search index...

    Interface StringifiedGridLayer

    Guide to building Grid layer data where the onFeature is stringified to ship to workers

    interface StringifiedGridLayer {
        description?: string;
        extent: Extents;
        getValue?: string;
        gridGuide: GridValueOptions<any>;
        layerName: string;
        onFeature?: string;
        sourceName: string;
    }

    Hierarchy

    • Omit<GridLayer, "onFeature" | "getValue">
      • StringifiedGridLayer
    Index

    Properties

    description?: string

    Explain what the layer is

    extent: Extents

    Extent at which the layer is storing its data

    getValue?: string

    Stringified version of the getValue used by the source so it can be shipped to a worker.

    gridGuide: GridValueOptions<any>

    Grid clustering guide

    layerName: string

    Name of the layer

    onFeature?: string

    Stringified version of the onFeature used by the source so it can be shipped to a worker.

    sourceName: string

    Name of the source