@loaders.gl/3d-tiles
Advanced tools
Comparing version 4.1.0-alpha.2 to 4.1.0-alpha.3
import { DataViewFile } from '@loaders.gl/loader-utils'; | ||
import { parse3DTilesArchive as parse3DTilesArchiveFromProvider } from "./3d-tiles-archive/3d-tiles-archive-parser.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const Tiles3DArchiveFileLoader = { | ||
@@ -5,0 +5,0 @@ name: '3tz', |
@@ -6,7 +6,7 @@ import { Tile3DSubtreeLoader } from "../../../tile-3d-subtree-loader.js"; | ||
import { convertS2BoundingVolumetoOBB } from "../../utils/obb/s2-corners-to-obb.js"; | ||
const QUADTREE_DEVISION_COUNT = 4; | ||
const OCTREE_DEVISION_COUNT = 8; | ||
const QUADTREE_DIVISION_COUNT = 4; | ||
const OCTREE_DIVISION_COUNT = 8; | ||
const SUBDIVISION_COUNT_MAP = { | ||
QUADTREE: QUADTREE_DEVISION_COUNT, | ||
OCTREE: OCTREE_DEVISION_COUNT | ||
QUADTREE: QUADTREE_DIVISION_COUNT, | ||
OCTREE: OCTREE_DIVISION_COUNT | ||
}; | ||
@@ -53,2 +53,8 @@ function getChildS2VolumeBox(s2VolumeBox, index, subdivisionScheme) { | ||
childIndex = 0, | ||
s2VolumeBox, | ||
loaderOptions | ||
} = params; | ||
let { | ||
subtree, | ||
level = 0, | ||
globalData = { | ||
@@ -60,10 +66,4 @@ level: 0, | ||
z: 0 | ||
}, | ||
s2VolumeBox, | ||
loaderOptions | ||
} | ||
} = params; | ||
let { | ||
subtree, | ||
level = 0 | ||
} = params; | ||
const { | ||
@@ -105,5 +105,5 @@ subdivisionScheme, | ||
} | ||
const x = concatBits(globalData.x, childTileX, level * bitsPerTile); | ||
const y = concatBits(globalData.y, childTileY, level * bitsPerTile); | ||
const z = concatBits(globalData.z, childTileZ, level * bitsPerTile); | ||
const x = concatBits(globalData.x, childTileX, level); | ||
const y = concatBits(globalData.y, childTileY, level); | ||
const z = concatBits(globalData.z, childTileZ, level); | ||
if (isChildSubtreeAvailable) { | ||
@@ -114,7 +114,9 @@ const subtreePath = `${basePath}/${subtreesUriTemplate}`; | ||
subtree = childSubtree; | ||
globalData.mortonIndex = childTileMortonIndex; | ||
globalData.x = childTileX; | ||
globalData.y = childTileY; | ||
globalData.z = childTileZ; | ||
globalData.level = level; | ||
globalData = { | ||
mortonIndex: childTileMortonIndex, | ||
x: childTileX, | ||
y: childTileY, | ||
z: childTileZ, | ||
level | ||
}; | ||
childTileMortonIndex = 0; | ||
@@ -121,0 +123,0 @@ tileAvailabilityIndex = 0; |
@@ -38,5 +38,3 @@ import { path } from '@loaders.gl/loader-utils'; | ||
} | ||
function resolveUri() { | ||
let uri = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; | ||
let basePath = arguments.length > 1 ? arguments[1] : undefined; | ||
function resolveUri(uri, basePath) { | ||
const urlSchemeRegex = /^[a-z][0-9a-z+.-]*:/i; | ||
@@ -59,3 +57,5 @@ if (urlSchemeRegex.test(basePath)) { | ||
const contentUri = tile.content.uri || ((_tile$content = tile.content) === null || _tile$content === void 0 ? void 0 : _tile$content.url); | ||
tileContentUrl = resolveUri(contentUri, basePath); | ||
if (typeof contentUri !== 'undefined') { | ||
tileContentUrl = resolveUri(contentUri, basePath); | ||
} | ||
} | ||
@@ -119,3 +119,4 @@ const tilePostprocessed = { | ||
const subtree = await load(subtreeUrl, Tile3DSubtreeLoader, options); | ||
const contentUrlTemplate = resolveUri((_tile$content2 = tile.content) === null || _tile$content2 === void 0 ? void 0 : _tile$content2.uri, basePath); | ||
const tileContentUri = (_tile$content2 = tile.content) === null || _tile$content2 === void 0 ? void 0 : _tile$content2.uri; | ||
const contentUrlTemplate = tileContentUri ? resolveUri(tileContentUri, basePath) : ''; | ||
const refine = tileset === null || tileset === void 0 ? void 0 : (_tileset$root = tileset.root) === null || _tileset$root === void 0 ? void 0 : _tileset$root.refine; | ||
@@ -122,0 +123,0 @@ const rootLodMetricValue = tile.geometricError; |
@@ -1,2 +0,2 @@ | ||
export const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
export const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@loaders.gl/3d-tiles", | ||
"version": "4.1.0-alpha.2", | ||
"version": "4.1.0-alpha.3", | ||
"description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.", | ||
@@ -48,8 +48,8 @@ "license": "MIT", | ||
"dependencies": { | ||
"@loaders.gl/draco": "4.1.0-alpha.2", | ||
"@loaders.gl/gltf": "4.1.0-alpha.2", | ||
"@loaders.gl/loader-utils": "4.1.0-alpha.2", | ||
"@loaders.gl/math": "4.1.0-alpha.2", | ||
"@loaders.gl/tiles": "4.1.0-alpha.2", | ||
"@loaders.gl/zip": "4.1.0-alpha.2", | ||
"@loaders.gl/draco": "4.1.0-alpha.3", | ||
"@loaders.gl/gltf": "4.1.0-alpha.3", | ||
"@loaders.gl/loader-utils": "4.1.0-alpha.3", | ||
"@loaders.gl/math": "4.1.0-alpha.3", | ||
"@loaders.gl/tiles": "4.1.0-alpha.3", | ||
"@loaders.gl/zip": "4.1.0-alpha.3", | ||
"@math.gl/core": "^4.0.0", | ||
@@ -63,3 +63,3 @@ "@math.gl/geospatial": "^4.0.0", | ||
}, | ||
"gitHead": "a248382edd20e846c1ccb23c15d089fb9b368dbc" | ||
"gitHead": "b78075a7cb8d4ecd4aac84805ce74b8ceb400cf7" | ||
} |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {LoaderOptions, LoaderWithParser} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import {DataViewFile} from '@loaders.gl/loader-utils'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {FileProvider} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import {MD5Hash} from '@loaders.gl/crypto'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {FileProvider} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import { |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {LoaderOptions, LoaderWithParser} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import {Tiles3DLoader} from './tiles-3d-loader'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
// LOADERS | ||
@@ -2,0 +6,0 @@ export {Tiles3DLoader} from './tiles-3d-loader'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {GLType} from '@loaders.gl/math'; // '@math.gl/geometry'; | ||
@@ -2,0 +6,0 @@ import {assert} from '@loaders.gl/loader-utils'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
// TILE TYPES | ||
@@ -2,0 +6,0 @@ |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
// HELPER ENCODERS | ||
@@ -2,0 +6,0 @@ import {assert} from '@loaders.gl/loader-utils'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {FileProvider} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import { |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
// Minimal support to load tilsets from the Cesium ION services | ||
@@ -2,0 +6,0 @@ |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {Tile3DBatchTable} from '@loaders.gl/3d-tiles'; | ||
@@ -2,0 +6,0 @@ import {decodeRGB565, GL} from '@loaders.gl/math'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {Vector3} from '@math.gl/core'; | ||
@@ -2,0 +6,0 @@ import {GL, octDecode} from '@loaders.gl/math'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {Vector3} from '@math.gl/core'; | ||
@@ -2,0 +6,0 @@ import {GL} from '@loaders.gl/math'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {Availability, Tile3DBoundingVolume, Subtree} from '../../../types'; | ||
@@ -13,8 +17,8 @@ import {Tile3DSubtreeLoader} from '../../../tile-3d-subtree-loader'; | ||
const QUADTREE_DEVISION_COUNT = 4; | ||
const OCTREE_DEVISION_COUNT = 8; | ||
const QUADTREE_DIVISION_COUNT = 4; | ||
const OCTREE_DIVISION_COUNT = 8; | ||
const SUBDIVISION_COUNT_MAP = { | ||
QUADTREE: QUADTREE_DEVISION_COUNT, | ||
OCTREE: OCTREE_DEVISION_COUNT | ||
QUADTREE: QUADTREE_DIVISION_COUNT, | ||
OCTREE: OCTREE_DIVISION_COUNT | ||
}; | ||
@@ -107,2 +111,8 @@ | ||
childIndex = 0, | ||
s2VolumeBox, | ||
loaderOptions | ||
} = params; | ||
let { | ||
subtree, | ||
level = 0, | ||
globalData = { | ||
@@ -114,7 +124,4 @@ level: 0, | ||
z: 0 | ||
}, | ||
s2VolumeBox, | ||
loaderOptions | ||
} | ||
} = params; | ||
let {subtree, level = 0} = params; | ||
const { | ||
@@ -169,5 +176,5 @@ subdivisionScheme, | ||
const x = concatBits(globalData.x, childTileX, level * bitsPerTile); | ||
const y = concatBits(globalData.y, childTileY, level * bitsPerTile); | ||
const z = concatBits(globalData.z, childTileZ, level * bitsPerTile); | ||
const x = concatBits(globalData.x, childTileX, level); | ||
const y = concatBits(globalData.y, childTileY, level); | ||
const z = concatBits(globalData.z, childTileZ, level); | ||
@@ -181,7 +188,9 @@ if (isChildSubtreeAvailable) { | ||
globalData.mortonIndex = childTileMortonIndex; | ||
globalData.x = childTileX; | ||
globalData.y = childTileY; | ||
globalData.z = childTileZ; | ||
globalData.level = level; | ||
globalData = { | ||
mortonIndex: childTileMortonIndex, | ||
x: childTileX, | ||
y: childTileY, | ||
z: childTileZ, | ||
level | ||
}; | ||
@@ -188,0 +197,0 @@ childTileMortonIndex = 0; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {Subtree, Availability} from '../../../types'; | ||
@@ -2,0 +6,0 @@ import type {LoaderContext, LoaderOptions} from '@loaders.gl/loader-utils'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT license | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {Tiles3DLoaderOptions} from '../../tiles-3d-loader'; | ||
@@ -82,3 +86,3 @@ import type {LoaderOptions} from '@loaders.gl/loader-utils'; | ||
function resolveUri(uri: string = '', basePath: string): string { | ||
function resolveUri(uri: string, basePath: string): string { | ||
// url scheme per RFC3986 | ||
@@ -107,3 +111,6 @@ const urlSchemeRegex = /^[a-z][0-9a-z+.-]*:/i; | ||
const contentUri = tile.content.uri || tile.content?.url; | ||
tileContentUrl = resolveUri(contentUri, basePath); | ||
if (typeof contentUri !== 'undefined') { | ||
// sparse implicit tilesets may not define content for all nodes | ||
tileContentUrl = resolveUri(contentUri, basePath); | ||
} | ||
} | ||
@@ -200,3 +207,4 @@ const tilePostprocessed: Tiles3DTileJSONPostprocessed = { | ||
const subtree = await load(subtreeUrl, Tile3DSubtreeLoader, options); | ||
const contentUrlTemplate = resolveUri(tile.content?.uri, basePath); | ||
const tileContentUri = tile.content?.uri; | ||
const contentUrlTemplate = tileContentUri ? resolveUri(tileContentUri, basePath) : ''; | ||
const refine = tileset?.root?.refine; | ||
@@ -203,0 +211,0 @@ // @ts-ignore |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND Apache-2.0 | ||
// Copyright vis.gl contributors | ||
// This file is derived from the Cesium code base under Apache 2 license | ||
@@ -2,0 +6,0 @@ // See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {Vector3} from '@math.gl/core'; | ||
@@ -2,0 +6,0 @@ import {OrientedBoundingBox, makeOrientedBoundingBoxFromPoints} from '@math.gl/culling'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {S2Cell} from '../s2geometry/s2-geometry'; | ||
@@ -2,0 +6,0 @@ import {IJToST, STToUV, FaceUVToXYZ, XYZToLngLat} from '../s2geometry/s2-geometry'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import {getS2Cell} from '../s2geometry/s2-cell-utils'; | ||
@@ -2,0 +6,0 @@ import {getS2Region} from './s2-to-region'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {S2Cell} from '../s2geometry/s2-geometry'; | ||
@@ -2,0 +6,0 @@ import {getS2BoundaryFlatFromS2Cell} from './s2-to-boundary'; |
@@ -1,2 +0,4 @@ | ||
// math.gl MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
@@ -3,0 +5,0 @@ export {getS2CellIdFromToken, getS2TokenFromCellId, getS2ChildCellId} from './s2-token-functions'; |
@@ -1,2 +0,4 @@ | ||
// math.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
@@ -3,0 +5,0 @@ import {getS2BoundaryFlatFromS2Cell} from './converters/s2-to-boundary'; |
@@ -1,3 +0,4 @@ | ||
// loaders.gl, MIT license | ||
// Copyright (c) vis.gl contributors | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
@@ -4,0 +5,0 @@ import Long from 'long'; |
@@ -1,2 +0,4 @@ | ||
// math.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
@@ -3,0 +5,0 @@ import type {S2Cell} from './s2-geometry'; |
@@ -1,2 +0,5 @@ | ||
// math.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT AND ISC | ||
// Copyright vis.gl contributors | ||
/* | ||
@@ -3,0 +6,0 @@ Adapted from s2-geometry under ISC License (ISC) |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {LoaderOptions, LoaderWithParser} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import type {Subtree} from './types'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {WriterWithEncoder, WriterOptions} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ import {VERSION} from './lib/utils/version'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {LoaderWithParser, LoaderOptions, LoaderContext} from '@loaders.gl/loader-utils'; | ||
@@ -2,0 +6,0 @@ // / import type { GLTFLoaderOptions } from '@loaders.gl/gltf'; |
@@ -0,1 +1,5 @@ | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright vis.gl contributors | ||
import type {GLTFPostprocessed, FeatureTableJson} from '@loaders.gl/gltf'; | ||
@@ -2,0 +6,0 @@ export type {FeatureTableJson}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1444410
30586
+ Added@loaders.gl/compression@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/crypto@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/draco@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/gltf@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/images@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/loader-utils@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/math@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/schema@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/textures@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/tiles@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/worker-utils@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/zip@4.1.0-alpha.3(transitive)
- Removed@loaders.gl/compression@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/crypto@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/draco@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/gltf@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/images@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/loader-utils@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/math@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/schema@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/textures@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/tiles@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/worker-utils@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/zip@4.1.0-alpha.2(transitive)