EquirectangularMultiTilesPanorama: {
    basePanoData?: PanoData | PanoDataProvider;
    baseUrl?: string;
    levels: EquirectangularTileLevel[];
    tileUrl: ((col: number, row: number, level: number) => string | null);
}

Configuration of a tiled panorama with multiple tiles configurations

Type declaration

  • OptionalbasePanoData?: PanoData | PanoDataProvider

    panoData configuration associated to low resolution panorama loaded before tiles

  • OptionalbaseUrl?: string

    low resolution panorama loaded before tiles

  • levels: EquirectangularTileLevel[]

    Configuration of tiles by zoom level

  • tileUrl: ((col: number, row: number, level: number) => string | null)

    function to build a tile url

      • (col, row, level): string | null
      • Parameters

        • col: number
        • row: number
        • level: number

        Returns string | null