@loaders.gl/tile-converter 4.2.0-alpha.6 → 4.2.0-beta.1
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.
- package/dist/converter.min.cjs +79 -79
- package/dist/deps-installer/deps-installer.d.ts.map +1 -1
- package/dist/deps-installer/deps-installer.js +4 -1
- package/dist/i3s-server/bin/i3s-server.min.cjs +76 -76
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +2 -2
- package/dist/pgm-loader.d.ts +17 -2
- package/dist/pgm-loader.d.ts.map +1 -1
- package/dist/pgm-loader.js +3 -1
- package/dist/slpk-extractor.min.cjs +36 -36
- package/package.json +16 -16
- package/src/deps-installer/deps-installer.ts +4 -0
- package/src/pgm-loader.ts +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/tile-converter",
|
|
3
|
-
"version": "4.2.0-
|
|
3
|
+
"version": "4.2.0-beta.1",
|
|
4
4
|
"description": "Converter",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -52,20 +52,20 @@
|
|
|
52
52
|
"build-i3s-server-bundle": "esbuild src/i3s-server/bin/www.ts --outfile=dist/i3s-server/bin/i3s-server.min.cjs --platform=node --target=esnext,node14 --minify --bundle --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@loaders.gl/3d-tiles": "4.2.0-
|
|
56
|
-
"@loaders.gl/compression": "4.2.0-
|
|
57
|
-
"@loaders.gl/crypto": "4.2.0-
|
|
58
|
-
"@loaders.gl/draco": "4.2.0-
|
|
59
|
-
"@loaders.gl/gltf": "4.2.0-
|
|
60
|
-
"@loaders.gl/i3s": "4.2.0-
|
|
61
|
-
"@loaders.gl/images": "4.2.0-
|
|
62
|
-
"@loaders.gl/loader-utils": "4.2.0-
|
|
63
|
-
"@loaders.gl/math": "4.2.0-
|
|
64
|
-
"@loaders.gl/polyfills": "4.2.0-
|
|
65
|
-
"@loaders.gl/textures": "4.2.0-
|
|
66
|
-
"@loaders.gl/tiles": "4.2.0-
|
|
67
|
-
"@loaders.gl/worker-utils": "4.2.0-
|
|
68
|
-
"@loaders.gl/zip": "4.2.0-
|
|
55
|
+
"@loaders.gl/3d-tiles": "4.2.0-beta.1",
|
|
56
|
+
"@loaders.gl/compression": "4.2.0-beta.1",
|
|
57
|
+
"@loaders.gl/crypto": "4.2.0-beta.1",
|
|
58
|
+
"@loaders.gl/draco": "4.2.0-beta.1",
|
|
59
|
+
"@loaders.gl/gltf": "4.2.0-beta.1",
|
|
60
|
+
"@loaders.gl/i3s": "4.2.0-beta.1",
|
|
61
|
+
"@loaders.gl/images": "4.2.0-beta.1",
|
|
62
|
+
"@loaders.gl/loader-utils": "4.2.0-beta.1",
|
|
63
|
+
"@loaders.gl/math": "4.2.0-beta.1",
|
|
64
|
+
"@loaders.gl/polyfills": "4.2.0-beta.1",
|
|
65
|
+
"@loaders.gl/textures": "4.2.0-beta.1",
|
|
66
|
+
"@loaders.gl/tiles": "4.2.0-beta.1",
|
|
67
|
+
"@loaders.gl/worker-utils": "4.2.0-beta.1",
|
|
68
|
+
"@loaders.gl/zip": "4.2.0-beta.1",
|
|
69
69
|
"@math.gl/core": "^4.0.0",
|
|
70
70
|
"@math.gl/culling": "^4.0.0",
|
|
71
71
|
"@math.gl/geoid": "^4.0.0",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"peerDependencies": {
|
|
94
94
|
"@loaders.gl/core": "^4.0.0"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "c386a9196516fe3ff24847b40e6c77be039cf905"
|
|
97
97
|
}
|
package/src/pgm-loader.ts
CHANGED
|
@@ -16,7 +16,10 @@ export type PGMLoaderOptions = LoaderOptions & {
|
|
|
16
16
|
/**
|
|
17
17
|
* Loader for PGM - Netpbm grayscale image format
|
|
18
18
|
*/
|
|
19
|
-
export const PGMLoader
|
|
19
|
+
export const PGMLoader = {
|
|
20
|
+
dataType: null as unknown as Geoid,
|
|
21
|
+
batchType: null as never,
|
|
22
|
+
|
|
20
23
|
name: 'PGM - Netpbm grayscale image format',
|
|
21
24
|
id: 'pgm',
|
|
22
25
|
module: 'tile-converter',
|
|
@@ -29,4 +32,4 @@ export const PGMLoader: LoaderWithParser<Geoid, never, PGMLoaderOptions> = {
|
|
|
29
32
|
cubic: false
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
|
-
}
|
|
35
|
+
} as const satisfies LoaderWithParser<Geoid, never, PGMLoaderOptions>;
|