interface WizardState {
    currStep: WizardStep;
    fileData: null | ArrayBuffer;
    layerInfo: LayerInfo;
    layerSource: null | LayerSource;
    typeSelection: string;
    url: string;
}

Properties

currStep: WizardStep

Current wizard form step

WizardState

fileData: null | ArrayBuffer

Raw file data

WizardState

layerInfo: LayerInfo

Layer configuration information

WizardState

layerSource: null | LayerSource

Service for retreiving layer config info given a file or URL

WizardState

typeSelection: string

Layer/file type selection

WizardState

url: string

User entered URL

WizardState