@loaders.gl/tile-converter 3.4.11 → 3.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/3d-tiles-attributes-worker.js +1 -1
  2. package/dist/converter.min.js +58 -58
  3. package/dist/dist.min.js +11 -26
  4. package/dist/es5/3d-tiles-attributes-worker.js +1 -1
  5. package/dist/es5/deps-installer/deps-installer.js +1 -1
  6. package/dist/es5/i3s-attributes-worker.js +1 -1
  7. package/dist/es5/pgm-loader.js +1 -1
  8. package/dist/esm/3d-tiles-attributes-worker.js +1 -1
  9. package/dist/esm/deps-installer/deps-installer.js +1 -1
  10. package/dist/esm/i3s-attributes-worker.js +1 -1
  11. package/dist/esm/pgm-loader.js +1 -1
  12. package/package.json +15 -15
  13. package/dist/3d-tiles-converter/3d-tiles-converter.js +0 -287
  14. package/dist/3d-tiles-converter/helpers/b3dm-converter.js +0 -282
  15. package/dist/3d-tiles-converter/helpers/i3s-obb-to-3d-tiles-obb.js +0 -23
  16. package/dist/3d-tiles-converter/helpers/texture-atlas.js +0 -52
  17. package/dist/3d-tiles-converter/json-templates/tileset.js +0 -43
  18. package/dist/bundle.js +0 -5
  19. package/dist/constants.js +0 -4
  20. package/dist/converter-cli.js +0 -280
  21. package/dist/deps-installer/deps-installer.js +0 -63
  22. package/dist/i3s-converter/helpers/batch-ids-extensions.js +0 -141
  23. package/dist/i3s-converter/helpers/coordinate-converter.js +0 -124
  24. package/dist/i3s-converter/helpers/create-scene-server-path.js +0 -28
  25. package/dist/i3s-converter/helpers/feature-attributes.js +0 -216
  26. package/dist/i3s-converter/helpers/geometry-attributes.js +0 -202
  27. package/dist/i3s-converter/helpers/geometry-converter.js +0 -1195
  28. package/dist/i3s-converter/helpers/gltf-attributes.js +0 -88
  29. package/dist/i3s-converter/helpers/node-debug.js +0 -120
  30. package/dist/i3s-converter/helpers/node-index-document.js +0 -250
  31. package/dist/i3s-converter/helpers/node-pages.js +0 -316
  32. package/dist/i3s-converter/i3s-converter.js +0 -890
  33. package/dist/i3s-converter/json-templates/geometry-definitions.js +0 -87
  34. package/dist/i3s-converter/json-templates/layers.js +0 -139
  35. package/dist/i3s-converter/json-templates/metadata.js +0 -25
  36. package/dist/i3s-converter/json-templates/node.js +0 -89
  37. package/dist/i3s-converter/json-templates/scene-server.js +0 -31
  38. package/dist/i3s-converter/json-templates/shared-resources.js +0 -129
  39. package/dist/i3s-converter/json-templates/store.js +0 -103
  40. package/dist/i3s-converter/types.js +0 -2
  41. package/dist/i3s-server/app.js +0 -14
  42. package/dist/i3s-server/controllers/index-controller.js +0 -23
  43. package/dist/i3s-server/routes/index.js +0 -16
  44. package/dist/index.js +0 -10
  45. package/dist/lib/utils/compress-util.js +0 -257
  46. package/dist/lib/utils/file-utils.js +0 -138
  47. package/dist/lib/utils/lod-conversion-utils.js +0 -76
  48. package/dist/lib/utils/queue.js +0 -18
  49. package/dist/lib/utils/statistic-utills.js +0 -64
  50. package/dist/lib/utils/write-queue.js +0 -80
  51. package/dist/pgm-loader.js +0 -24
  52. package/dist/workers/3d-tiles-attributes-worker.js +0 -9
  53. package/dist/workers/i3s-attributes-worker.js +0 -5
@@ -1,87 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.GEOMETRY_DEFINITION = void 0;
7
- const json_map_transform_1 = __importDefault(require("json-map-transform"));
8
- const PLAIN_GEOMETRY_DEFINITION = () => ({
9
- offset: {
10
- default: 8
11
- },
12
- position: {
13
- default: {
14
- type: 'Float32',
15
- component: 3
16
- }
17
- },
18
- normal: {
19
- default: {
20
- type: 'Float32',
21
- component: 3
22
- }
23
- },
24
- uv0: {
25
- path: 'hasTexture',
26
- transform: (val) => (val && { type: 'Float32', component: 2 }) || false,
27
- omitValues: [false]
28
- },
29
- color: {
30
- default: {
31
- type: 'UInt8',
32
- component: 4
33
- }
34
- },
35
- uvRegion: {
36
- path: 'hasUvRegions',
37
- transform: (val) => (val && { type: 'UInt16', component: 4 }) || false,
38
- omitValues: [false]
39
- },
40
- featureId: {
41
- default: {
42
- binding: 'per-feature',
43
- type: 'UInt64',
44
- component: 1
45
- }
46
- },
47
- faceRange: {
48
- default: {
49
- binding: 'per-feature',
50
- type: 'UInt32',
51
- component: 2
52
- }
53
- }
54
- });
55
- const COMPRESSED_GEOMETRY_DEFINITION = () => ({
56
- 'compressedAttributes.encoding': {
57
- default: 'draco'
58
- },
59
- 'compressedAttributes.attributes': {
60
- path: 'geometryConfig',
61
- transform: (val) => {
62
- const result = ['position', 'normal'];
63
- if (val.hasTexture) {
64
- result.push('uv0');
65
- }
66
- result.push('color');
67
- if (val.hasUvRegions) {
68
- result.push('uv-region');
69
- }
70
- result.push('feature-index');
71
- return result;
72
- }
73
- }
74
- });
75
- const GEOMETRY_DEFINITION = () => ({
76
- geometryBuffers: {
77
- path: 'geometryConfig',
78
- transform: (val) => {
79
- const result = [(0, json_map_transform_1.default)(val, PLAIN_GEOMETRY_DEFINITION())];
80
- if (val.draco) {
81
- result.push((0, json_map_transform_1.default)({ geometryConfig: val }, COMPRESSED_GEOMETRY_DEFINITION()));
82
- }
83
- return result;
84
- }
85
- }
86
- });
87
- exports.GEOMETRY_DEFINITION = GEOMETRY_DEFINITION;
@@ -1,139 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.LAYERS = void 0;
7
- const json_map_transform_1 = __importDefault(require("json-map-transform"));
8
- const store_1 = require("./store");
9
- const SPATIAL_REFERENCE = () => ({
10
- wkid: {
11
- path: 'wkid',
12
- default: 4326
13
- },
14
- latestWkid: {
15
- path: 'latestWkid',
16
- default: 4326
17
- },
18
- vcsWkid: {
19
- path: 'vcsWkid',
20
- default: 5773
21
- },
22
- latestVcsWkid: {
23
- path: 'latestVcsWkid',
24
- default: 5773
25
- }
26
- });
27
- const HEIGHT_MODEL_INFO = () => ({
28
- heightModel: {
29
- path: 'heightModel',
30
- default: 'gravity_related_height'
31
- },
32
- vertCRS: {
33
- path: 'vertCRS',
34
- default: 'EGM96_Geoid'
35
- },
36
- heightUnit: {
37
- path: 'heightUnit',
38
- default: 'meter'
39
- }
40
- });
41
- const NODE_PAGES = () => ({
42
- nodesPerPage: {
43
- path: 'nodesPerPage'
44
- },
45
- lodSelectionMetricType: {
46
- path: 'lodSelectionMetricType',
47
- default: 'maxScreenThresholdSQ'
48
- }
49
- });
50
- const FULL_EXTENT = () => ({
51
- xmin: {
52
- path: 'xmin'
53
- },
54
- ymin: {
55
- path: 'ymin'
56
- },
57
- xmax: {
58
- path: 'xmax'
59
- },
60
- ymax: {
61
- path: 'ymax'
62
- },
63
- zmin: {
64
- path: 'zmin'
65
- },
66
- zmax: {
67
- path: 'zmax'
68
- }
69
- });
70
- const LAYERS = () => ({
71
- version: {
72
- path: 'version',
73
- transform: (val) => val.toUpperCase()
74
- },
75
- id: {
76
- path: 'id',
77
- default: 0
78
- },
79
- name: {
80
- path: 'name'
81
- },
82
- href: {
83
- path: 'href',
84
- default: './layers/0'
85
- },
86
- layerType: {
87
- path: 'layerType',
88
- default: 'IntegratedMesh'
89
- },
90
- spatialReference: {
91
- path: 'spatialReference',
92
- transform: (val) => (0, json_map_transform_1.default)(val, SPATIAL_REFERENCE())
93
- },
94
- capabilities: {
95
- path: 'capabilities',
96
- default: ['View', 'Query']
97
- },
98
- store: {
99
- path: 'store',
100
- transform: (val) => (0, json_map_transform_1.default)(val, store_1.STORE)
101
- },
102
- fullExtent: {
103
- path: 'fullExtent',
104
- transform: (val) => (0, json_map_transform_1.default)(val, FULL_EXTENT())
105
- },
106
- heightModelInfo: {
107
- path: 'heightModelInfo',
108
- transform: (val) => (0, json_map_transform_1.default)(val, HEIGHT_MODEL_INFO())
109
- },
110
- nodePages: {
111
- path: 'nodePages',
112
- transform: (val) => (0, json_map_transform_1.default)(val, NODE_PAGES())
113
- },
114
- materialDefinitions: {
115
- path: 'materialDefinitions',
116
- default: []
117
- },
118
- textureSetDefinitions: {
119
- path: 'textureSetDefinitions',
120
- default: []
121
- },
122
- geometryDefinitions: {
123
- path: 'geometryDefinitions',
124
- default: []
125
- },
126
- attributeStorageInfo: {
127
- path: 'attributeStorageInfo',
128
- default: []
129
- },
130
- fields: {
131
- path: 'fields',
132
- default: []
133
- },
134
- popupInfo: {
135
- path: 'popupInfo',
136
- default: null
137
- }
138
- });
139
- exports.LAYERS = LAYERS;
@@ -1,25 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.METADATA = void 0;
4
- const METADATA = () => ({
5
- folderPattern: {
6
- path: 'folderPattern',
7
- default: 'BASIC'
8
- },
9
- archiveCompressionType: {
10
- path: 'archiveCompressionType',
11
- default: 'STORE'
12
- },
13
- resourceCompressionType: {
14
- path: 'resourceCompressionType',
15
- default: 'GZIP'
16
- },
17
- I3SVersion: {
18
- path: 'I3SVersion',
19
- default: '1.8'
20
- },
21
- nodeCount: {
22
- path: 'nodeCount'
23
- }
24
- });
25
- exports.METADATA = METADATA;
@@ -1,89 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.NODE = void 0;
7
- const json_map_transform_1 = __importDefault(require("json-map-transform"));
8
- const COORDINATES = () => ({
9
- mbs: {
10
- path: 'mbs'
11
- },
12
- obb: {
13
- path: 'obb'
14
- }
15
- });
16
- const HREF = () => ({
17
- href: {
18
- path: 'href'
19
- }
20
- });
21
- const PARENT_NODE = () => ({
22
- id: {
23
- path: 'id'
24
- },
25
- ...HREF(),
26
- ...COORDINATES()
27
- });
28
- const NODE = () => ({
29
- version: {
30
- path: 'version'
31
- },
32
- id: {
33
- path: 'id'
34
- },
35
- path: {
36
- path: 'path'
37
- },
38
- level: {
39
- path: 'level'
40
- },
41
- ...COORDINATES(),
42
- lodSelection: {
43
- path: 'lodSelection',
44
- default: [
45
- {
46
- metricType: 'maxScreenThresholdSQ',
47
- maxError: 196349.54374999998
48
- },
49
- {
50
- metricType: 'maxScreenThreshold',
51
- maxError: 999.99999999999994
52
- }
53
- ]
54
- },
55
- children: {
56
- path: 'children',
57
- default: null
58
- },
59
- neighbors: {
60
- path: 'neighbors',
61
- default: null
62
- },
63
- parentNode: {
64
- path: 'parentNode',
65
- transform: (val) => (0, json_map_transform_1.default)(val, PARENT_NODE()),
66
- default: null
67
- },
68
- sharedResource: {
69
- path: 'sharedResource',
70
- default: null
71
- },
72
- featureData: {
73
- path: 'featureData',
74
- default: null
75
- },
76
- geometryData: {
77
- path: 'geometryData',
78
- default: null
79
- },
80
- textureData: {
81
- path: 'textureData',
82
- default: null
83
- },
84
- attributeData: {
85
- path: 'attributeData',
86
- default: null
87
- }
88
- });
89
- exports.NODE = NODE;
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SCENE_SERVER = void 0;
4
- const SCENE_SERVER = () => ({
5
- serviceItemId: {
6
- path: 'serviceItemId'
7
- },
8
- serviceName: {
9
- path: 'layerName'
10
- },
11
- name: {
12
- path: 'layerName'
13
- },
14
- currentVersion: {
15
- path: 'currentVersion',
16
- default: 10.7
17
- },
18
- serviceVersion: {
19
- path: 'serviceVersion',
20
- default: '1.8'
21
- },
22
- supportedBindings: {
23
- path: 'supportedBindings',
24
- default: ['REST']
25
- },
26
- layers: {
27
- path: 'layers0',
28
- transform: (layers0) => [layers0]
29
- }
30
- });
31
- exports.SCENE_SERVER = SCENE_SERVER;
@@ -1,129 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SHARED_RESOURCES = void 0;
7
- const json_map_transform_1 = __importDefault(require("json-map-transform"));
8
- const MATERIAL_DEFINITION_INFO_PARAMS = () => ({
9
- renderMode: {
10
- path: 'renderMode',
11
- default: 'solid'
12
- },
13
- shininess: {
14
- path: 'shininess',
15
- default: 1
16
- },
17
- reflectivity: {
18
- path: 'reflectivity',
19
- default: 0
20
- },
21
- ambient: {
22
- path: 'ambient',
23
- default: [1, 1, 1]
24
- },
25
- diffuse: {
26
- path: 'diffuse',
27
- default: [1, 1, 1]
28
- },
29
- specular: {
30
- path: 'specular',
31
- default: [0, 0, 0]
32
- },
33
- useVertexColorAlpha: {
34
- path: 'useVertexColorAlpha',
35
- default: false
36
- },
37
- vertexRegions: {
38
- path: 'vertexRegions',
39
- default: false
40
- },
41
- vertexColors: {
42
- path: 'vertexColors',
43
- default: true
44
- }
45
- });
46
- const MATERIAL_DEFINITION_INFO = () => ({
47
- name: {
48
- path: 'name',
49
- default: 'standard'
50
- },
51
- type: {
52
- path: 'type',
53
- default: 'standard'
54
- },
55
- params: {
56
- path: 'params',
57
- transform: (val, thisObject, originalObject) => (0, json_map_transform_1.default)(originalObject, MATERIAL_DEFINITION_INFO_PARAMS())
58
- }
59
- });
60
- const TEXTURE_DEFINITION_IMAGE = () => ({
61
- id: {
62
- path: 'id'
63
- },
64
- size: {
65
- path: 'size'
66
- },
67
- href: {
68
- path: 'href',
69
- default: ['../textures/0']
70
- },
71
- length: {
72
- path: 'length'
73
- }
74
- });
75
- const TEXTURE_DEFINITION_INFO = () => ({
76
- encoding: {
77
- path: 'encoding'
78
- },
79
- wrap: {
80
- path: 'wrap',
81
- default: ['none']
82
- },
83
- atlas: {
84
- path: 'atlas',
85
- default: false
86
- },
87
- uvSet: {
88
- path: 'uvSet',
89
- default: 'uv0'
90
- },
91
- channels: {
92
- path: 'channels',
93
- default: 'rgb'
94
- },
95
- images: {
96
- path: 'images',
97
- transform: (val, thisObject, originalObject) => val.map((image) => (0, json_map_transform_1.default)(image, TEXTURE_DEFINITION_IMAGE()))
98
- }
99
- });
100
- const SHARED_RESOURCES = () => ({
101
- materialDefinitions: {
102
- path: 'materialDefinitionInfos',
103
- transform: transfromMaterialDefinitions
104
- },
105
- textureDefinitions: {
106
- path: 'textureDefinitionInfos',
107
- transform: transfromTextureDefinitions
108
- }
109
- });
110
- exports.SHARED_RESOURCES = SHARED_RESOURCES;
111
- function transfromMaterialDefinitions(materialDefinitionInfos, thisObject, originalObject) {
112
- const result = {};
113
- for (const [index, materialDefinitionInfo] of materialDefinitionInfos.entries()) {
114
- result[`Mat${originalObject.nodePath}${index}`] = (0, json_map_transform_1.default)(materialDefinitionInfo, MATERIAL_DEFINITION_INFO());
115
- }
116
- return result;
117
- }
118
- function transfromTextureDefinitions(textureDefinitionInfos, thisObject, originalObject) {
119
- if (!textureDefinitionInfos) {
120
- return null;
121
- }
122
- const result = {};
123
- for (const [index, textureDefinitionInfo] of textureDefinitionInfos.entries()) {
124
- const imageIndex = `${originalObject.nodePath}${index}`;
125
- textureDefinitionInfo.imageIndex = imageIndex;
126
- result[imageIndex] = (0, json_map_transform_1.default)(textureDefinitionInfo, TEXTURE_DEFINITION_INFO());
127
- }
128
- return result;
129
- }
@@ -1,103 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.STORE = void 0;
4
- exports.STORE = {
5
- id: {
6
- path: 'id',
7
- transform: (val) => val.toUpperCase()
8
- },
9
- profile: {
10
- path: 'profile',
11
- default: 'meshpyramids'
12
- },
13
- version: {
14
- path: 'version',
15
- default: '1.8'
16
- },
17
- resourcePattern: {
18
- path: 'resourcePattern',
19
- default: ['3dNodeIndexDocument', 'Attributes', 'SharedResource', 'Geometry']
20
- },
21
- rootNode: {
22
- path: 'rootNode',
23
- default: './nodes/root'
24
- },
25
- extent: {
26
- path: 'extent'
27
- },
28
- indexCRS: {
29
- path: 'indexCRS',
30
- default: 'http://www.opengis.net/def/crs/EPSG/0/4326'
31
- },
32
- vertexCRS: {
33
- path: 'vertexCRS',
34
- default: 'http://www.opengis.net/def/crs/EPSG/0/4326'
35
- },
36
- normalReferenceFrame: {
37
- path: 'normalReferenceFrame',
38
- default: 'east-north-up'
39
- },
40
- attributeEncoding: {
41
- path: 'attributeEncoding',
42
- default: 'application/octet-stream; version=1.6'
43
- },
44
- textureEncoding: {
45
- path: 'textureEncoding',
46
- default: ['image/jpeg', 'image/ktx2']
47
- },
48
- lodType: {
49
- path: 'lodType',
50
- default: 'MeshPyramid'
51
- },
52
- lodModel: {
53
- path: 'lodModel',
54
- default: 'node-switching'
55
- },
56
- defaultGeometrySchema: {
57
- path: 'defaultGeometrySchema',
58
- default: {
59
- geometryType: 'triangles',
60
- header: [
61
- {
62
- property: 'vertexCount',
63
- type: 'UInt32'
64
- },
65
- {
66
- property: 'featureCount',
67
- type: 'UInt32'
68
- }
69
- ],
70
- topology: 'PerAttributeArray',
71
- ordering: ['position', 'normal', 'uv0', 'color'],
72
- vertexAttributes: {
73
- position: {
74
- valueType: 'Float32',
75
- valuesPerElement: 3
76
- },
77
- normal: {
78
- valueType: 'Float32',
79
- valuesPerElement: 3
80
- },
81
- uv0: {
82
- valueType: 'Float32',
83
- valuesPerElement: 2
84
- },
85
- color: {
86
- valueType: 'UInt8',
87
- valuesPerElement: 4
88
- }
89
- },
90
- featureAttributeOrder: ['id', 'faceRange'],
91
- featureAttributes: {
92
- id: {
93
- valueType: 'UInt64',
94
- valuesPerElement: 1
95
- },
96
- faceRange: {
97
- valueType: 'UInt32',
98
- valuesPerElement: 2
99
- }
100
- }
101
- }
102
- }
103
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +0,0 @@
1
- "use strict";
2
- const express = require('express');
3
- const path = require('path');
4
- const logger = require('morgan');
5
- const cors = require('cors');
6
- const indexRouter = require('./routes/index');
7
- const app = express();
8
- app.use(logger('dev'));
9
- app.use(express.json());
10
- app.use(express.urlencoded({ extended: false }));
11
- app.use(express.static(path.join(__dirname, 'public')));
12
- app.use(cors());
13
- app.use('/', indexRouter);
14
- module.exports = app;
@@ -1,23 +0,0 @@
1
- "use strict";
2
- const path = require('path');
3
- const fs = require('fs');
4
- const { promises } = fs;
5
- const I3S_LAYER_PATH = process.env.I3sLayerPath || ''; // eslint-disable-line no-process-env, no-undef
6
- const FULL_LAYER_PATH = path.join(process.cwd(), I3S_LAYER_PATH); // eslint-disable-line no-undef
7
- async function getFileNameByUrl(url) {
8
- const extensions = ['json', 'bin', 'jpg', 'jpeg', 'png', 'bin.dds', 'ktx2'];
9
- for (const ext of extensions) {
10
- const fileName = `${FULL_LAYER_PATH}${url}/index.${ext}`;
11
- try {
12
- await promises.access(fileName);
13
- return fileName;
14
- }
15
- catch {
16
- continue; // eslint-disable-line no-continue
17
- }
18
- }
19
- return null;
20
- }
21
- module.exports = {
22
- getFileNameByUrl
23
- };
@@ -1,16 +0,0 @@
1
- "use strict";
2
- const express = require('express');
3
- const router = express.Router();
4
- const { getFileNameByUrl } = require('../controllers/index-controller');
5
- /* GET home page. */
6
- router.get('*', async function (req, res, next) {
7
- const fileName = await getFileNameByUrl(req.path);
8
- if (fileName) {
9
- res.sendFile(fileName);
10
- }
11
- else {
12
- res.status(404);
13
- res.send('File not found');
14
- }
15
- });
16
- module.exports = router;
package/dist/index.js DELETED
@@ -1,10 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Tiles3DConverter = exports.I3SConverter = void 0;
7
- var i3s_converter_1 = require("./i3s-converter/i3s-converter");
8
- Object.defineProperty(exports, "I3SConverter", { enumerable: true, get: function () { return __importDefault(i3s_converter_1).default; } });
9
- var _3d_tiles_converter_1 = require("./3d-tiles-converter/3d-tiles-converter");
10
- Object.defineProperty(exports, "Tiles3DConverter", { enumerable: true, get: function () { return __importDefault(_3d_tiles_converter_1).default; } });