Member Junction
    Preparing search index...

    Opaque per-view configuration for the Map view type.

    The host stores and round-trips this blob verbatim against the active ViewTypeID and never inspects it — only this renderer reads/writes it. It carries the two pieces of map state that should persist with the view: the render mode (point / boundary / choropleth / heatmap) and the last display state (zoom / center / clustering / choropleth options). Both are optional so a freshly-created Map view starts from sensible defaults.

    interface MapViewConfig {
        displayState?: MapDisplayState;
        renderMode?: MapRenderMode;
    }
    Index

    Properties

    displayState?: MapDisplayState

    The map's last persisted display state (zoom, center, clustering, choropleth options).

    renderMode?: MapRenderMode

    The map's render mode. Defaults to 'point' when unset (see MapViewRendererComponent.activeRenderMode).