Interface JMapContextData

interface JMapContextData {
    baseMap: undefined | string;
    extensionData: {
        [extensionId: string]: any;
    };
    layerElements: JMapContextDataLayerElement[];
    mapBearing: number;
    mapCenter: JLocation;
    mapPitch: number;
    mapZoom: number;
    selection: JMapSelection;
    thumbnailUrl: string;
    version: JMAP_CONTEXT_VERSIONS;
}

Properties

baseMap: undefined | string
extensionData: {
    [extensionId: string]: any;
}

Type declaration

  • [extensionId: string]: any
mapBearing: number
mapCenter: JLocation
mapPitch: number
mapZoom: number
selection: JMapSelection
thumbnailUrl: string