Class StandardB3dProvider

Summary

標準 B3D プロバイダ

Classdesc

汎用的な B3D プロバイダの実装である。

[requestMeta]requestMeta() は次の URL のオブジェクトを要求する。

  prefix + "tile-index.json"

L = level, C = coords のとき、[requestTile]requestTile( level, coords ) は次の URL のオブジェクトを要求する。

  prefix + L + '/' + C[0] + '/' + C[1] + '/' + C[2] + suffix

Memberof

mapray

Hierarchy

Constructors

  • Parameters

    • prefix: string

      URL の先頭文字列

    • suffix: string

      URL の末尾文字列

    • Optional options: {
          meta_credentials: any;
          meta_headers: undefined | object;
          tile_credentials: any;
          tile_headers: undefined | object;
      }

      オプション集合

      • meta_credentials: any

        メタデータのクレデンシャルモード

      • meta_headers: undefined | object

        メタデータのリクエストに追加するヘッダーの辞書

      • tile_credentials: any

        タイルデータのクレデンシャルモード

      • tile_headers: undefined | object

        タイルデータのリクエストに追加するヘッダーの辞書

    Returns StandardB3dProvider

Properties

_meta_credentials: any
_meta_headers: object
_prefix: string
_suffix: string
_tile_credentials: any
_tile_headers: object

Methods