Interface JMapEventSelectionChangedParams

interface JMapEventSelectionChangedParams {
    changesByLayerId: {
        [layerId: string]: JMapLayerSelectionChanges;
    };
    newSelection: JMapSelection;
    oldSelection: JMapSelection;
}

Properties

changesByLayerId: {
    [layerId: string]: JMapLayerSelectionChanges;
}

Type declaration

newSelection: JMapSelection
oldSelection: JMapSelection