POLAR reference
    Preparing search index...

    Interface MarkerConfiguration

    interface MarkerConfiguration {
        layers: MarkerLayerConfiguration[];
        callOnMapSelect?: CallOnMapSelect;
        clusterClickZoom?: boolean;
    }
    Index

    Properties

    List of layers including optional style information and under which condition a feature is selectable.

    callOnMapSelect?: CallOnMapSelect

    If set, the given action will be called with the given payload. If the pluginName is set, the action will be called in the respective plugin, otherwise the core store is used.

    callOnMapSelect: {
    action: 'openMenuById',
    payload: 'gfi',
    pluginName: 'iconMenu'
    }

    The example open the gfi window in the iconMenu, if the IconMenu exists with the gfi plugin registered under the id gfi.

    clusterClickZoom?: boolean

    If true, clicking a cluster feature will zoom into the clustered features' bounding box (with padding) so that the cluster is "resolved". This happens until the maximum zoom level is reached, at which no further zooming can take place. Defaults to false.