interface DownloadOfflineRegionOptions {
    accessToken?: string;
    bounds: Bounds;
    maxZoom: number;
    metadata?: any;
    minZoom: number;
    name: string;
    onProgress?: ((data) => void);
    pixelRatio?: any;
    style: MapStyle;
    type?: any;
}

Hierarchy (view full)

Properties

accessToken?: string

Optional, used on Android only. Set this, in case no map has been show yet (and thus, no accessToken has been passed in yet).

bounds: Bounds
maxZoom: number
metadata?: any
minZoom: number
name: string
onProgress?: ((data) => void)

Type declaration

pixelRatio?: any
style: MapStyle
type?: any