interface OverviewmapState {
    areaColour: string;
    areaOpacity: number;
    basemaps: {
        [key: string]: RampBasemapConfig;
    };
    borderColour: string;
    borderWidth: number;
    expandFactor: number;
    mapConfig: RampMapConfig;
    startMinimized: boolean;
}

Properties

areaColour: string

Colour of the area rectangle

OverviewmapState

areaOpacity: number

Opacity of the area rectangle

OverviewmapState

basemaps: {
    [key: string]: RampBasemapConfig;
}

A list of basemaps

OverviewmapState

borderColour: string

Colour of the area border

OverviewmapState

borderWidth: number

Width of the area border

OverviewmapState

expandFactor: number

Ratio of the overview map's extent size compared to the main map's extent size

OverviewmapState

mapConfig: RampMapConfig

The map configuration

OverviewmapState

startMinimized: boolean

Initial state of the overview map

OverviewmapState