Open Pioneer Trails Packages
    Preparing search index...

    These are properties supported by the OverviewMap.

    interface OverviewMapProps {
        height?: ConditionalValue<
            | undefined
            | SizesToken
            | `var(--${string})`
            | AnyString
            | Height<String | Number>
            | readonly NonNullable<(Height<String | Number> | undefined)>[],
        >;
        map?: MapModel;
        mapId?: string;
        olLayer: BaseLayer;
        width?: ConditionalValue<
            | undefined
            | SizesToken
            | `var(--${string})`
            | AnyString
            | Width<String | Number>
            | readonly NonNullable<(Width<String | Number> | undefined)>[],
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    height?: ConditionalValue<
        | undefined
        | SizesToken
        | `var(--${string})`
        | AnyString
        | Height<String | Number>
        | readonly NonNullable<(Height<String | Number> | undefined)>[],
    >

    The height of the map. This defaults to a reasonable pixel size.

    map?: MapModel

    The map model to use.

    mapId?: string

    The id of the map. The map will be looked up in the MapRegistry service.

    Use the map property instead.

    olLayer: BaseLayer

    The layer shown in the overview map.

    width?: ConditionalValue<
        | undefined
        | SizesToken
        | `var(--${string})`
        | AnyString
        | Width<String | Number>
        | readonly NonNullable<(Width<String | Number> | undefined)>[],
    >

    The width of the map. This defaults to a reasonable pixel size.