CubemapMultiTilesPanorama: {
    baseUrl?: CubemapPanorama;
    flipTopBottom?: boolean;
    levels: CubemapTileLevel[];
    tileUrl: ((face, col, row, level) => string | null);
}

Configuration of a tiled cubemap with multiple tiles configurations

Type declaration

  • Optional baseUrl?: CubemapPanorama

    low resolution panorama loaded before tiles

  • Optional flipTopBottom?: boolean

    Set to true if the top and bottom faces are not correctly oriented

    Default

    false
    
  • levels: CubemapTileLevel[]

    Configuration of tiles by zoom level

  • tileUrl: ((face, col, row, level) => string | null)
      • (face, col, row, level): string | null
      • function to build a tile url

        Parameters

        • face: keyof Cubemap
        • col: number
        • row: number
        • level: number

        Returns string | null

Generated using TypeDoc