@loaders.gl/mvt 3.1.7 → 3.2.0-alpha.2

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.
@@ -1,93 +1,146 @@
1
- import VectorTile from './mapbox-vector-tile/vector-tile';
2
- import BinaryVectorTile from './binary-vector-tile/vector-tile';
3
1
  import { flatGeojsonToBinary } from '@loaders.gl/gis';
4
2
  import Protobuf from 'pbf';
3
+ import VectorTile from './mapbox-vector-tile/vector-tile';
4
+ import BinaryVectorTile from './binary-vector-tile/vector-tile';
5
5
  export default function parseMVT(arrayBuffer, options) {
6
- options = normalizeOptions(options);
7
- const features = [];
8
-
9
- if (options) {
10
- const binary = options.gis.format === 'binary';
11
- const geometryInfo = {
12
- coordLength: 2,
13
- pointPositionsCount: 0,
14
- pointFeaturesCount: 0,
15
- linePositionsCount: 0,
16
- linePathsCount: 0,
17
- lineFeaturesCount: 0,
18
- polygonPositionsCount: 0,
19
- polygonObjectsCount: 0,
20
- polygonRingsCount: 0,
21
- polygonFeaturesCount: 0
22
- };
23
-
24
- if (arrayBuffer.byteLength > 0) {
25
- const tile = binary ? new BinaryVectorTile(new Protobuf(arrayBuffer)) : new VectorTile(new Protobuf(arrayBuffer));
26
- const loaderOptions = options.mvt;
27
- const selectedLayers = Array.isArray(loaderOptions.layers) ? loaderOptions.layers : Object.keys(tile.layers);
28
- selectedLayers.forEach(layerName => {
29
- const vectorTileLayer = tile.layers[layerName];
30
- const featureOptions = { ...loaderOptions,
31
- layerName
6
+ var _options$gis, _options$mvt;
7
+
8
+ const mvtOptions = normalizeOptions(options);
9
+ const shape = (options === null || options === void 0 ? void 0 : (_options$gis = options.gis) === null || _options$gis === void 0 ? void 0 : _options$gis.format) || (options === null || options === void 0 ? void 0 : (_options$mvt = options.mvt) === null || _options$mvt === void 0 ? void 0 : _options$mvt.shape);
10
+
11
+ switch (shape) {
12
+ case 'columnar-table':
13
+ return {
14
+ shape: 'columnar-table',
15
+ data: parseToBinary(arrayBuffer, mvtOptions)
16
+ };
17
+
18
+ case 'geojson-row-table':
19
+ {
20
+ const table = {
21
+ shape: 'geojson-row-table',
22
+ data: parseToGeojson(arrayBuffer, mvtOptions)
32
23
  };
24
+ return table;
25
+ }
26
+
27
+ case 'geojson':
28
+ return parseToGeojson(arrayBuffer, mvtOptions);
29
+
30
+ case 'binary-geometry':
31
+ return parseToBinary(arrayBuffer, mvtOptions);
32
+
33
+ case 'binary':
34
+ return parseToBinary(arrayBuffer, mvtOptions);
35
+
36
+ default:
37
+ throw new Error(shape);
38
+ }
39
+ }
40
+
41
+ function parseToBinary(arrayBuffer, options) {
42
+ const [flatGeoJsonFeatures, geometryInfo] = parseToFlatGeoJson(arrayBuffer, options);
43
+ const binaryData = flatGeojsonToBinary(flatGeoJsonFeatures, geometryInfo);
44
+ binaryData.byteLength = arrayBuffer.byteLength;
45
+ return binaryData;
46
+ }
47
+
48
+ function parseToFlatGeoJson(arrayBuffer, options) {
49
+ const features = [];
50
+ const geometryInfo = {
51
+ coordLength: 2,
52
+ pointPositionsCount: 0,
53
+ pointFeaturesCount: 0,
54
+ linePositionsCount: 0,
55
+ linePathsCount: 0,
56
+ lineFeaturesCount: 0,
57
+ polygonPositionsCount: 0,
58
+ polygonObjectsCount: 0,
59
+ polygonRingsCount: 0,
60
+ polygonFeaturesCount: 0
61
+ };
62
+
63
+ if (arrayBuffer.byteLength <= 0) {
64
+ return [features, geometryInfo];
65
+ }
33
66
 
34
- if (!vectorTileLayer) {
35
- return;
36
- }
67
+ const tile = new BinaryVectorTile(new Protobuf(arrayBuffer));
68
+ const selectedLayers = options && Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);
69
+ selectedLayers.forEach(layerName => {
70
+ const vectorTileLayer = tile.layers[layerName];
37
71
 
38
- for (let i = 0; i < vectorTileLayer.length; i++) {
39
- const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);
40
- const decodedFeature = binary ? getDecodedFeatureBinary(vectorTileFeature, featureOptions) : getDecodedFeature(vectorTileFeature, featureOptions);
41
- features.push(decodedFeature);
42
- }
43
- });
72
+ if (!vectorTileLayer) {
73
+ return;
44
74
  }
45
75
 
46
- if (binary) {
47
- const data = flatGeojsonToBinary(features, geometryInfo);
48
- data.byteLength = arrayBuffer.byteLength;
49
- return data;
76
+ for (let i = 0; i < vectorTileLayer.length; i++) {
77
+ const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);
78
+ const decodedFeature = getDecodedFeatureBinary(vectorTileFeature, options, layerName);
79
+ features.push(decodedFeature);
50
80
  }
81
+ });
82
+ return [features, geometryInfo];
83
+ }
84
+
85
+ function parseToGeojson(arrayBuffer, options) {
86
+ if (arrayBuffer.byteLength <= 0) {
87
+ return [];
51
88
  }
52
89
 
90
+ const features = [];
91
+ const tile = new VectorTile(new Protobuf(arrayBuffer));
92
+ const selectedLayers = Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);
93
+ selectedLayers.forEach(layerName => {
94
+ const vectorTileLayer = tile.layers[layerName];
95
+
96
+ if (!vectorTileLayer) {
97
+ return;
98
+ }
99
+
100
+ for (let i = 0; i < vectorTileLayer.length; i++) {
101
+ const vectorTileFeature = vectorTileLayer.feature(i);
102
+ const decodedFeature = getDecodedFeature(vectorTileFeature, options, layerName);
103
+ features.push(decodedFeature);
104
+ }
105
+ });
53
106
  return features;
54
107
  }
55
108
 
56
109
  function normalizeOptions(options) {
57
- if (options) {
58
- options = { ...options,
59
- mvt: options.mvt || {},
60
- gis: options.gis || {}
61
- };
62
- const wgs84Coordinates = options.coordinates === 'wgs84';
63
- const {
64
- tileIndex
65
- } = options;
66
- const hasTileIndex = tileIndex && Number.isFinite(tileIndex.x) && Number.isFinite(tileIndex.y) && Number.isFinite(tileIndex.z);
67
-
68
- if (wgs84Coordinates && !hasTileIndex) {
69
- throw new Error('MVT Loader: WGS84 coordinates need tileIndex property. Check documentation.');
70
- }
110
+ var _options$mvt2;
111
+
112
+ if (!(options !== null && options !== void 0 && options.mvt)) {
113
+ throw new Error('mvt options required');
114
+ }
115
+
116
+ const wgs84Coordinates = ((_options$mvt2 = options.mvt) === null || _options$mvt2 === void 0 ? void 0 : _options$mvt2.coordinates) === 'wgs84';
117
+ const {
118
+ tileIndex
119
+ } = options.mvt;
120
+ const hasTileIndex = tileIndex && Number.isFinite(tileIndex.x) && Number.isFinite(tileIndex.y) && Number.isFinite(tileIndex.z);
121
+
122
+ if (wgs84Coordinates && !hasTileIndex) {
123
+ throw new Error('MVT Loader: WGS84 coordinates need tileIndex property');
71
124
  }
72
125
 
73
- return options;
126
+ return options.mvt;
74
127
  }
75
128
 
76
- function getDecodedFeature(feature, options) {
129
+ function getDecodedFeature(feature, options, layerName) {
77
130
  const decodedFeature = feature.toGeoJSON(options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinates);
78
131
 
79
132
  if (options.layerProperty) {
80
- decodedFeature.properties[options.layerProperty] = options.layerName;
133
+ decodedFeature.properties[options.layerProperty] = layerName;
81
134
  }
82
135
 
83
136
  return decodedFeature;
84
137
  }
85
138
 
86
- function getDecodedFeatureBinary(feature, options) {
139
+ function getDecodedFeatureBinary(feature, options, layerName) {
87
140
  const decodedFeature = feature.toBinaryCoordinates(options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinatesBinary);
88
141
 
89
142
  if (options.layerProperty && decodedFeature.properties) {
90
- decodedFeature.properties[options.layerProperty] = options.layerName;
143
+ decodedFeature.properties[options.layerProperty] = layerName;
91
144
  }
92
145
 
93
146
  return decodedFeature;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/lib/parse-mvt.ts"],"names":["VectorTile","BinaryVectorTile","flatGeojsonToBinary","Protobuf","parseMVT","arrayBuffer","options","normalizeOptions","features","binary","gis","format","geometryInfo","coordLength","pointPositionsCount","pointFeaturesCount","linePositionsCount","linePathsCount","lineFeaturesCount","polygonPositionsCount","polygonObjectsCount","polygonRingsCount","polygonFeaturesCount","byteLength","tile","loaderOptions","mvt","selectedLayers","Array","isArray","layers","Object","keys","forEach","layerName","vectorTileLayer","featureOptions","i","length","vectorTileFeature","feature","decodedFeature","getDecodedFeatureBinary","getDecodedFeature","push","data","wgs84Coordinates","coordinates","tileIndex","hasTileIndex","Number","isFinite","x","y","z","Error","toGeoJSON","transformToLocalCoordinates","layerProperty","properties","toBinaryCoordinates","transformToLocalCoordinatesBinary","line","extent","p","il"],"mappings":"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","sourcesContent":["// import {VectorTile} from '@mapbox/vector-tile';\nimport VectorTile from './mapbox-vector-tile/vector-tile';\nimport BinaryVectorTile from './binary-vector-tile/vector-tile';\n\nimport {flatGeojsonToBinary} from '@loaders.gl/gis';\nimport Protobuf from 'pbf';\nimport type {FlatFeature} from '@loaders.gl/schema';\nimport type {MvtMapboxCoordinates, MvtOptions} from '../lib/types';\nimport VectorTileFeatureBinary from './binary-vector-tile/vector-tile-feature';\nimport VectorTileFeatureMapBox from './mapbox-vector-tile/vector-tile-feature';\nimport {LoaderOptions} from '@loaders.gl/loader-utils';\n\n/**\n * Parse MVT arrayBuffer and return GeoJSON.\n *\n * @param arrayBuffer A MVT arrayBuffer\n * @param options\n * @returns A GeoJSON geometry object or a binary representation\n */\nexport default function parseMVT(arrayBuffer: ArrayBuffer, options?: LoaderOptions) {\n options = normalizeOptions(options);\n const features: (FlatFeature | MvtMapboxCoordinates)[] = [];\n\n if (options) {\n const binary = options.gis.format === 'binary';\n const geometryInfo = {\n coordLength: 2,\n pointPositionsCount: 0,\n pointFeaturesCount: 0,\n linePositionsCount: 0,\n linePathsCount: 0,\n lineFeaturesCount: 0,\n polygonPositionsCount: 0,\n polygonObjectsCount: 0,\n polygonRingsCount: 0,\n polygonFeaturesCount: 0\n };\n\n if (arrayBuffer.byteLength > 0) {\n const tile = binary\n ? new BinaryVectorTile(new Protobuf(arrayBuffer))\n : new VectorTile(new Protobuf(arrayBuffer));\n const loaderOptions = options.mvt;\n\n const selectedLayers = Array.isArray(loaderOptions.layers)\n ? loaderOptions.layers\n : Object.keys(tile.layers);\n\n selectedLayers.forEach((layerName: string) => {\n const vectorTileLayer = tile.layers[layerName];\n const featureOptions = {...loaderOptions, layerName};\n\n if (!vectorTileLayer) {\n return;\n }\n\n for (let i = 0; i < vectorTileLayer.length; i++) {\n const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);\n\n const decodedFeature = binary\n ? getDecodedFeatureBinary(vectorTileFeature as VectorTileFeatureBinary, featureOptions)\n : getDecodedFeature(vectorTileFeature as VectorTileFeatureMapBox, featureOptions);\n features.push(decodedFeature);\n }\n });\n }\n\n if (binary) {\n const data = flatGeojsonToBinary(features as FlatFeature[], geometryInfo);\n // Add the original byteLength (as a reasonable approximation of the size of the binary data)\n // TODO decide where to store extra fields like byteLength (header etc) and document\n // @ts-ignore\n data.byteLength = arrayBuffer.byteLength;\n return data;\n }\n }\n return features;\n}\n\n/**\n * @param options\n * @returns options\n */\nfunction normalizeOptions(options: LoaderOptions | undefined) {\n if (options) {\n options = {\n ...options,\n mvt: options.mvt || {},\n gis: options.gis || {}\n };\n\n // Validate\n const wgs84Coordinates = options.coordinates === 'wgs84';\n const {tileIndex} = options;\n const hasTileIndex =\n tileIndex &&\n Number.isFinite(tileIndex.x) &&\n Number.isFinite(tileIndex.y) &&\n Number.isFinite(tileIndex.z);\n\n if (wgs84Coordinates && !hasTileIndex) {\n throw new Error(\n 'MVT Loader: WGS84 coordinates need tileIndex property. Check documentation.'\n );\n }\n }\n return options;\n}\n\n/**\n * @param feature\n * @param options\n * @returns decoded feature\n */\nfunction getDecodedFeature(\n feature: VectorTileFeatureMapBox,\n options: MvtOptions\n): MvtMapboxCoordinates {\n const decodedFeature = feature.toGeoJSON(\n options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinates\n );\n\n // Add layer name to GeoJSON properties\n if (options.layerProperty) {\n decodedFeature.properties[options.layerProperty] = options.layerName;\n }\n\n return decodedFeature;\n}\n\n/**\n * @param feature\n * @param options\n * @returns decoded binary feature\n */\nfunction getDecodedFeatureBinary(\n feature: VectorTileFeatureBinary,\n options: MvtOptions\n): FlatFeature {\n const decodedFeature = feature.toBinaryCoordinates(\n options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinatesBinary\n );\n\n // Add layer name to GeoJSON properties\n if (options.layerProperty && decodedFeature.properties) {\n decodedFeature.properties[options.layerProperty] = options.layerName;\n }\n\n return decodedFeature;\n}\n\n/**\n * @param line\n * @param feature\n */\nfunction transformToLocalCoordinates(line: number[], feature: {extent: any}): void {\n // This function transforms local coordinates in a\n // [0 - bufferSize, this.extent + bufferSize] range to a\n // [0 - (bufferSize / this.extent), 1 + (bufferSize / this.extent)] range.\n // The resulting extent would be 1.\n const {extent} = feature;\n for (let i = 0; i < line.length; i++) {\n const p = line[i];\n p[0] /= extent;\n p[1] /= extent;\n }\n}\n\nfunction transformToLocalCoordinatesBinary(data: number[], feature: {extent: any}) {\n // For the binary code path, the feature data is just\n // one big flat array, so we just divide each value\n const {extent} = feature;\n for (let i = 0, il = data.length; i < il; ++i) {\n data[i] /= extent;\n }\n}\n"],"file":"parse-mvt.js"}
1
+ {"version":3,"sources":["../../../src/lib/parse-mvt.ts"],"names":["flatGeojsonToBinary","Protobuf","VectorTile","BinaryVectorTile","parseMVT","arrayBuffer","options","mvtOptions","normalizeOptions","shape","gis","format","mvt","data","parseToBinary","table","parseToGeojson","Error","flatGeoJsonFeatures","geometryInfo","parseToFlatGeoJson","binaryData","byteLength","features","coordLength","pointPositionsCount","pointFeaturesCount","linePositionsCount","linePathsCount","lineFeaturesCount","polygonPositionsCount","polygonObjectsCount","polygonRingsCount","polygonFeaturesCount","tile","selectedLayers","Array","isArray","layers","Object","keys","forEach","layerName","vectorTileLayer","i","length","vectorTileFeature","feature","decodedFeature","getDecodedFeatureBinary","push","getDecodedFeature","wgs84Coordinates","coordinates","tileIndex","hasTileIndex","Number","isFinite","x","y","z","toGeoJSON","transformToLocalCoordinates","layerProperty","properties","toBinaryCoordinates","transformToLocalCoordinatesBinary","line","extent","p","il"],"mappings":"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","sourcesContent":["import {flatGeojsonToBinary} from '@loaders.gl/gis';\nimport type {\n FlatFeature,\n Feature,\n GeojsonGeometryInfo,\n BinaryFeatures,\n GeoJSONRowTable\n} from '@loaders.gl/schema';\nimport Protobuf from 'pbf';\n\nimport type {MVTMapboxCoordinates, MVTOptions, MVTLoaderOptions} from '../lib/types';\n\nimport VectorTile from './mapbox-vector-tile/vector-tile';\nimport BinaryVectorTile from './binary-vector-tile/vector-tile';\nimport VectorTileFeatureBinary from './binary-vector-tile/vector-tile-feature';\nimport VectorTileFeatureMapBox from './mapbox-vector-tile/vector-tile-feature';\n\n/**\n * Parse MVT arrayBuffer and return GeoJSON.\n *\n * @param arrayBuffer A MVT arrayBuffer\n * @param options\n * @returns A GeoJSON geometry object or a binary representation\n */\nexport default function parseMVT(arrayBuffer: ArrayBuffer, options?: MVTLoaderOptions) {\n const mvtOptions = normalizeOptions(options);\n\n const shape = options?.gis?.format || options?.mvt?.shape;\n switch (shape) {\n case 'columnar-table': // binary + some JS arrays\n return {shape: 'columnar-table', data: parseToBinary(arrayBuffer, mvtOptions)};\n case 'geojson-row-table': {\n const table: GeoJSONRowTable = {\n shape: 'geojson-row-table',\n data: parseToGeojson(arrayBuffer, mvtOptions)\n };\n return table;\n }\n case 'geojson':\n return parseToGeojson(arrayBuffer, mvtOptions);\n case 'binary-geometry':\n return parseToBinary(arrayBuffer, mvtOptions);\n case 'binary':\n return parseToBinary(arrayBuffer, mvtOptions);\n default:\n throw new Error(shape);\n }\n}\n\nfunction parseToBinary(arrayBuffer: ArrayBuffer, options: MVTOptions): BinaryFeatures {\n const [flatGeoJsonFeatures, geometryInfo] = parseToFlatGeoJson(arrayBuffer, options);\n\n const binaryData = flatGeojsonToBinary(flatGeoJsonFeatures, geometryInfo);\n // Add the original byteLength (as a reasonable approximation of the size of the binary data)\n // TODO decide where to store extra fields like byteLength (header etc) and document\n // @ts-ignore\n binaryData.byteLength = arrayBuffer.byteLength;\n return binaryData;\n}\n\nfunction parseToFlatGeoJson(\n arrayBuffer: ArrayBuffer,\n options: MVTOptions\n): [FlatFeature[], GeojsonGeometryInfo] {\n const features: FlatFeature[] = [];\n const geometryInfo: GeojsonGeometryInfo = {\n coordLength: 2,\n pointPositionsCount: 0,\n pointFeaturesCount: 0,\n linePositionsCount: 0,\n linePathsCount: 0,\n lineFeaturesCount: 0,\n polygonPositionsCount: 0,\n polygonObjectsCount: 0,\n polygonRingsCount: 0,\n polygonFeaturesCount: 0\n };\n\n if (arrayBuffer.byteLength <= 0) {\n return [features, geometryInfo];\n }\n\n const tile = new BinaryVectorTile(new Protobuf(arrayBuffer));\n\n const selectedLayers =\n options && Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);\n\n selectedLayers.forEach((layerName: string) => {\n const vectorTileLayer = tile.layers[layerName];\n if (!vectorTileLayer) {\n return;\n }\n\n for (let i = 0; i < vectorTileLayer.length; i++) {\n const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);\n const decodedFeature = getDecodedFeatureBinary(vectorTileFeature, options, layerName);\n features.push(decodedFeature);\n }\n });\n\n return [features, geometryInfo];\n}\n\nfunction parseToGeojson(arrayBuffer: ArrayBuffer, options: MVTOptions): Feature[] {\n if (arrayBuffer.byteLength <= 0) {\n return [];\n }\n\n const features: MVTMapboxCoordinates[] = [];\n const tile = new VectorTile(new Protobuf(arrayBuffer));\n\n const selectedLayers = Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);\n\n selectedLayers.forEach((layerName: string) => {\n const vectorTileLayer = tile.layers[layerName];\n if (!vectorTileLayer) {\n return;\n }\n\n for (let i = 0; i < vectorTileLayer.length; i++) {\n const vectorTileFeature = vectorTileLayer.feature(i);\n const decodedFeature = getDecodedFeature(vectorTileFeature, options, layerName);\n features.push(decodedFeature);\n }\n });\n\n return features as Feature[];\n}\n\nfunction normalizeOptions(options?: MVTLoaderOptions): MVTOptions {\n if (!options?.mvt) {\n throw new Error('mvt options required');\n }\n\n // Validate\n const wgs84Coordinates = options.mvt?.coordinates === 'wgs84';\n const {tileIndex} = options.mvt;\n const hasTileIndex =\n tileIndex &&\n Number.isFinite(tileIndex.x) &&\n Number.isFinite(tileIndex.y) &&\n Number.isFinite(tileIndex.z);\n\n if (wgs84Coordinates && !hasTileIndex) {\n throw new Error('MVT Loader: WGS84 coordinates need tileIndex property');\n }\n\n return options.mvt;\n}\n\n/**\n * @param feature\n * @param options\n * @returns decoded feature\n */\nfunction getDecodedFeature(\n feature: VectorTileFeatureMapBox,\n options: MVTOptions,\n layerName: string\n): MVTMapboxCoordinates {\n const decodedFeature = feature.toGeoJSON(\n options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinates\n );\n\n // Add layer name to GeoJSON properties\n if (options.layerProperty) {\n decodedFeature.properties[options.layerProperty] = layerName;\n }\n\n return decodedFeature;\n}\n\n/**\n * @param feature\n * @param options\n * @returns decoded binary feature\n */\nfunction getDecodedFeatureBinary(\n feature: VectorTileFeatureBinary,\n options: MVTOptions,\n layerName: string\n): FlatFeature {\n const decodedFeature = feature.toBinaryCoordinates(\n options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinatesBinary\n );\n\n // Add layer name to GeoJSON properties\n if (options.layerProperty && decodedFeature.properties) {\n decodedFeature.properties[options.layerProperty] = layerName;\n }\n\n return decodedFeature;\n}\n\n/**\n * @param line\n * @param feature\n */\nfunction transformToLocalCoordinates(line: number[], feature: {extent: any}): void {\n // This function transforms local coordinates in a\n // [0 - bufferSize, this.extent + bufferSize] range to a\n // [0 - (bufferSize / this.extent), 1 + (bufferSize / this.extent)] range.\n // The resulting extent would be 1.\n const {extent} = feature;\n for (let i = 0; i < line.length; i++) {\n const p = line[i];\n p[0] /= extent;\n p[1] /= extent;\n }\n}\n\nfunction transformToLocalCoordinatesBinary(data: number[], feature: {extent: any}) {\n // For the binary code path, the feature data is just\n // one big flat array, so we just divide each value\n const {extent} = feature;\n for (let i = 0, il = data.length; i < il; ++i) {\n data[i] /= extent;\n }\n}\n"],"file":"parse-mvt.js"}
@@ -1,5 +1,14 @@
1
1
  import parseMVT from './lib/parse-mvt';
2
- const VERSION = typeof "3.1.7" !== 'undefined' ? "3.1.7" : 'latest';
2
+ const VERSION = typeof "3.2.0-alpha.2" !== 'undefined' ? "3.2.0-alpha.2" : 'latest';
3
+ const DEFAULT_MVT_LOADER_OPTIONS = {
4
+ mvt: {
5
+ shape: 'geojson',
6
+ coordinates: 'local',
7
+ layerProperty: 'layerName',
8
+ layers: undefined,
9
+ tileIndex: null
10
+ }
11
+ };
3
12
  export const MVTWorkerLoader = {
4
13
  name: 'Mapbox Vector Tile',
5
14
  id: 'mvt',
@@ -9,14 +18,7 @@ export const MVTWorkerLoader = {
9
18
  mimeTypes: ['application/vnd.mapbox-vector-tile', 'application/x-protobuf'],
10
19
  worker: true,
11
20
  category: 'geometry',
12
- options: {
13
- mvt: {
14
- coordinates: 'local',
15
- layerProperty: 'layerName',
16
- layers: null,
17
- tileIndex: null
18
- }
19
- }
21
+ options: DEFAULT_MVT_LOADER_OPTIONS
20
22
  };
21
23
  export const MVTLoader = { ...MVTWorkerLoader,
22
24
  parse: async (arrayBuffer, options) => parseMVT(arrayBuffer, options),
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/mvt-loader.ts"],"names":["parseMVT","VERSION","MVTWorkerLoader","name","id","module","version","extensions","mimeTypes","worker","category","options","mvt","coordinates","layerProperty","layers","tileIndex","MVTLoader","parse","arrayBuffer","parseSync","binary"],"mappings":"AACA,OAAOA,QAAP,MAAqB,iBAArB;AAIA,MAAMC,OAAO,GAAG,mBAAuB,WAAvB,aAAmD,QAAnE;AAKA,OAAO,MAAMC,eAAuB,GAAG;AACrCC,EAAAA,IAAI,EAAE,oBAD+B;AAErCC,EAAAA,EAAE,EAAE,KAFiC;AAGrCC,EAAAA,MAAM,EAAE,KAH6B;AAIrCC,EAAAA,OAAO,EAAEL,OAJ4B;AAMrCM,EAAAA,UAAU,EAAE,CAAC,KAAD,EAAQ,KAAR,CANyB;AAOrCC,EAAAA,SAAS,EAAE,CACT,oCADS,EAET,wBAFS,CAP0B;AAYrCC,EAAAA,MAAM,EAAE,IAZ6B;AAarCC,EAAAA,QAAQ,EAAE,UAb2B;AAcrCC,EAAAA,OAAO,EAAE;AACPC,IAAAA,GAAG,EAAE;AACHC,MAAAA,WAAW,EAAE,OADV;AAEHC,MAAAA,aAAa,EAAE,WAFZ;AAGHC,MAAAA,MAAM,EAAE,IAHL;AAIHC,MAAAA,SAAS,EAAE;AAJR;AADE;AAd4B,CAAhC;AA2BP,OAAO,MAAMC,SAA2B,GAAG,EACzC,GAAGf,eADsC;AAEzCgB,EAAAA,KAAK,EAAE,OAAOC,WAAP,EAAoBR,OAApB,KAAgCX,QAAQ,CAACmB,WAAD,EAAcR,OAAd,CAFN;AAGzCS,EAAAA,SAAS,EAAEpB,QAH8B;AAIzCqB,EAAAA,MAAM,EAAE;AAJiC,CAApC","sourcesContent":["import type {Loader, LoaderWithParser} from '@loaders.gl/loader-utils';\nimport parseMVT from './lib/parse-mvt';\n\n// __VERSION__ is injected by babel-plugin-version-inline\n// @ts-ignore TS2304: Cannot find name '__VERSION__'.\nconst VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';\n\n/**\n * Worker loader for the Mapbox Vector Tile format\n */\nexport const MVTWorkerLoader: Loader = {\n name: 'Mapbox Vector Tile',\n id: 'mvt',\n module: 'mvt',\n version: VERSION,\n // Note: ArcGIS uses '.pbf' extension and 'application/octet-stream'\n extensions: ['mvt', 'pbf'],\n mimeTypes: [\n 'application/vnd.mapbox-vector-tile',\n 'application/x-protobuf'\n // 'application/octet-stream'\n ],\n worker: true,\n category: 'geometry',\n options: {\n mvt: {\n coordinates: 'local',\n layerProperty: 'layerName',\n layers: null,\n tileIndex: null\n }\n }\n};\n\n/**\n * Loader for the Mapbox Vector Tile format\n */\nexport const MVTLoader: LoaderWithParser = {\n ...MVTWorkerLoader,\n parse: async (arrayBuffer, options) => parseMVT(arrayBuffer, options),\n parseSync: parseMVT,\n binary: true\n};\n"],"file":"mvt-loader.js"}
1
+ {"version":3,"sources":["../../src/mvt-loader.ts"],"names":["parseMVT","VERSION","DEFAULT_MVT_LOADER_OPTIONS","mvt","shape","coordinates","layerProperty","layers","undefined","tileIndex","MVTWorkerLoader","name","id","module","version","extensions","mimeTypes","worker","category","options","MVTLoader","parse","arrayBuffer","parseSync","binary"],"mappings":"AAEA,OAAOA,QAAP,MAAqB,iBAArB;AAIA,MAAMC,OAAO,GAAG,2BAAuB,WAAvB,qBAAmD,QAAnE;AAEA,MAAMC,0BAA4C,GAAG;AACnDC,EAAAA,GAAG,EAAE;AACHC,IAAAA,KAAK,EAAE,SADJ;AAEHC,IAAAA,WAAW,EAAE,OAFV;AAGHC,IAAAA,aAAa,EAAE,WAHZ;AAIHC,IAAAA,MAAM,EAAEC,SAJL;AAKHC,IAAAA,SAAS,EAAE;AALR;AAD8C,CAArD;AAaA,OAAO,MAAMC,eAAuB,GAAG;AACrCC,EAAAA,IAAI,EAAE,oBAD+B;AAErCC,EAAAA,EAAE,EAAE,KAFiC;AAGrCC,EAAAA,MAAM,EAAE,KAH6B;AAIrCC,EAAAA,OAAO,EAAEb,OAJ4B;AAMrCc,EAAAA,UAAU,EAAE,CAAC,KAAD,EAAQ,KAAR,CANyB;AAOrCC,EAAAA,SAAS,EAAE,CACT,oCADS,EAET,wBAFS,CAP0B;AAYrCC,EAAAA,MAAM,EAAE,IAZ6B;AAarCC,EAAAA,QAAQ,EAAE,UAb2B;AAcrCC,EAAAA,OAAO,EAAEjB;AAd4B,CAAhC;AAoBP,OAAO,MAAMkB,SAA2B,GAAG,EACzC,GAAGV,eADsC;AAEzCW,EAAAA,KAAK,EAAE,OAAOC,WAAP,EAAoBH,OAApB,KAAmDnB,QAAQ,CAACsB,WAAD,EAAcH,OAAd,CAFzB;AAGzCI,EAAAA,SAAS,EAAEvB,QAH8B;AAIzCwB,EAAAA,MAAM,EAAE;AAJiC,CAApC","sourcesContent":["import type {Loader, LoaderWithParser} from '@loaders.gl/loader-utils';\nimport type {MVTLoaderOptions} from './lib/types';\nimport parseMVT from './lib/parse-mvt';\n\n// __VERSION__ is injected by babel-plugin-version-inline\n// @ts-ignore TS2304: Cannot find name '__VERSION__'.\nconst VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';\n\nconst DEFAULT_MVT_LOADER_OPTIONS: MVTLoaderOptions = {\n mvt: {\n shape: 'geojson',\n coordinates: 'local',\n layerProperty: 'layerName',\n layers: undefined,\n tileIndex: null\n }\n};\n\n/**\n * Worker loader for the Mapbox Vector Tile format\n */\nexport const MVTWorkerLoader: Loader = {\n name: 'Mapbox Vector Tile',\n id: 'mvt',\n module: 'mvt',\n version: VERSION,\n // Note: ArcGIS uses '.pbf' extension and 'application/octet-stream'\n extensions: ['mvt', 'pbf'],\n mimeTypes: [\n 'application/vnd.mapbox-vector-tile',\n 'application/x-protobuf'\n // 'application/octet-stream'\n ],\n worker: true,\n category: 'geometry',\n options: DEFAULT_MVT_LOADER_OPTIONS\n};\n\n/**\n * Loader for the Mapbox Vector Tile format\n */\nexport const MVTLoader: LoaderWithParser = {\n ...MVTWorkerLoader,\n parse: async (arrayBuffer, options?: MVTLoaderOptions) => parseMVT(arrayBuffer, options),\n parseSync: parseMVT,\n binary: true\n};\n"],"file":"mvt-loader.js"}
@@ -1,12 +1,12 @@
1
1
  import Protobuf from 'pbf';
2
- import { MvtMapboxGeometry } from '../lib/types';
2
+ import { MVTMapboxGeometry } from '../lib/types';
3
3
  import VectorTileFeature from '../lib/mapbox-vector-tile/vector-tile-feature';
4
4
  /**
5
5
  * Classifies an array of rings into polygons with outer rings and holes
6
6
  * @param rings
7
7
  * @returns polygons
8
8
  */
9
- export declare function classifyRings(rings: MvtMapboxGeometry): MvtMapboxGeometry[] | number[][][];
9
+ export declare function classifyRings(rings: MVTMapboxGeometry): MVTMapboxGeometry[] | number[][][];
10
10
  /**
11
11
  *
12
12
  * @param ring
@@ -1,5 +1,5 @@
1
1
  import Protobuf from 'pbf';
2
- import { MvtMapboxCoordinates, MvtMapboxGeometry } from '../types';
2
+ import { MVTMapboxCoordinates, MVTMapboxGeometry } from '../types';
3
3
  export default class VectorTileFeature {
4
4
  properties: {
5
5
  [x: string]: string | number | boolean | null;
@@ -13,15 +13,15 @@ export default class VectorTileFeature {
13
13
  _values: (string | number | boolean | null)[];
14
14
  static get types(): string[];
15
15
  constructor(pbf: Protobuf, end: number, extent: any, keys: string[], values: (string | number | boolean | null)[]);
16
- loadGeometry(): MvtMapboxGeometry;
16
+ loadGeometry(): MVTMapboxGeometry;
17
17
  bbox(): number[];
18
- _toGeoJSON(transform: any): MvtMapboxCoordinates;
18
+ _toGeoJSON(transform: any): MVTMapboxCoordinates;
19
19
  toGeoJSON(options: {
20
20
  x: number;
21
21
  y: number;
22
22
  z: number;
23
23
  } | ((data: number[], feature: {
24
24
  extent: any;
25
- }) => void)): MvtMapboxCoordinates;
25
+ }) => void)): MVTMapboxCoordinates;
26
26
  }
27
27
  //# sourceMappingURL=vector-tile-feature.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { MvtMapboxCoordinates } from '../lib/types';
2
- import { LoaderOptions } from '@loaders.gl/loader-utils';
1
+ import type { Feature, BinaryFeatures, GeoJSONRowTable } from '@loaders.gl/schema';
2
+ import type { MVTLoaderOptions } from '../lib/types';
3
3
  /**
4
4
  * Parse MVT arrayBuffer and return GeoJSON.
5
5
  *
@@ -7,11 +7,8 @@ import { LoaderOptions } from '@loaders.gl/loader-utils';
7
7
  * @param options
8
8
  * @returns A GeoJSON geometry object or a binary representation
9
9
  */
10
- export default function parseMVT(arrayBuffer: ArrayBuffer, options?: LoaderOptions): (MvtMapboxCoordinates | {
11
- type: "Feature";
12
- geometry: import("@loaders.gl/schema").FlatGeometry;
13
- id?: string | number | undefined;
14
- properties: import("geojson").GeoJsonProperties;
15
- bbox?: import("geojson").BBox | undefined;
16
- })[] | import("@loaders.gl/schema").BinaryFeatures;
10
+ export default function parseMVT(arrayBuffer: ArrayBuffer, options?: MVTLoaderOptions): BinaryFeatures | GeoJSONRowTable | Feature<import("geojson").Geometry, import("geojson").GeoJsonProperties>[] | {
11
+ shape: string;
12
+ data: BinaryFeatures;
13
+ };
17
14
  //# sourceMappingURL=parse-mvt.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"parse-mvt.d.ts","sourceRoot":"","sources":["../../src/lib/parse-mvt.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,oBAAoB,EAAa,MAAM,cAAc,CAAC;AAGnE,OAAO,EAAC,aAAa,EAAC,MAAM,0BAA0B,CAAC;AAEvD;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,WAAW,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,aAAa;;;;;;mDA0DjF"}
1
+ {"version":3,"file":"parse-mvt.d.ts","sourceRoot":"","sources":["../../src/lib/parse-mvt.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAEV,OAAO,EAEP,cAAc,EACd,eAAe,EAChB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,KAAK,EAAmC,gBAAgB,EAAC,MAAM,cAAc,CAAC;AAOrF;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,WAAW,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,gBAAgB;;;EAuBpF"}
@@ -3,11 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- // import {VectorTile} from '@mapbox/vector-tile';
7
- const vector_tile_1 = __importDefault(require("./mapbox-vector-tile/vector-tile"));
8
- const vector_tile_2 = __importDefault(require("./binary-vector-tile/vector-tile"));
9
6
  const gis_1 = require("@loaders.gl/gis");
10
7
  const pbf_1 = __importDefault(require("pbf"));
8
+ const vector_tile_1 = __importDefault(require("./mapbox-vector-tile/vector-tile"));
9
+ const vector_tile_2 = __importDefault(require("./binary-vector-tile/vector-tile"));
11
10
  /**
12
11
  * Parse MVT arrayBuffer and return GeoJSON.
13
12
  *
@@ -16,91 +15,116 @@ const pbf_1 = __importDefault(require("pbf"));
16
15
  * @returns A GeoJSON geometry object or a binary representation
17
16
  */
18
17
  function parseMVT(arrayBuffer, options) {
19
- options = normalizeOptions(options);
18
+ const mvtOptions = normalizeOptions(options);
19
+ const shape = options?.gis?.format || options?.mvt?.shape;
20
+ switch (shape) {
21
+ case 'columnar-table': // binary + some JS arrays
22
+ return { shape: 'columnar-table', data: parseToBinary(arrayBuffer, mvtOptions) };
23
+ case 'geojson-row-table': {
24
+ const table = {
25
+ shape: 'geojson-row-table',
26
+ data: parseToGeojson(arrayBuffer, mvtOptions)
27
+ };
28
+ return table;
29
+ }
30
+ case 'geojson':
31
+ return parseToGeojson(arrayBuffer, mvtOptions);
32
+ case 'binary-geometry':
33
+ return parseToBinary(arrayBuffer, mvtOptions);
34
+ case 'binary':
35
+ return parseToBinary(arrayBuffer, mvtOptions);
36
+ default:
37
+ throw new Error(shape);
38
+ }
39
+ }
40
+ exports.default = parseMVT;
41
+ function parseToBinary(arrayBuffer, options) {
42
+ const [flatGeoJsonFeatures, geometryInfo] = parseToFlatGeoJson(arrayBuffer, options);
43
+ const binaryData = (0, gis_1.flatGeojsonToBinary)(flatGeoJsonFeatures, geometryInfo);
44
+ // Add the original byteLength (as a reasonable approximation of the size of the binary data)
45
+ // TODO decide where to store extra fields like byteLength (header etc) and document
46
+ // @ts-ignore
47
+ binaryData.byteLength = arrayBuffer.byteLength;
48
+ return binaryData;
49
+ }
50
+ function parseToFlatGeoJson(arrayBuffer, options) {
20
51
  const features = [];
21
- if (options) {
22
- const binary = options.gis.format === 'binary';
23
- const geometryInfo = {
24
- coordLength: 2,
25
- pointPositionsCount: 0,
26
- pointFeaturesCount: 0,
27
- linePositionsCount: 0,
28
- linePathsCount: 0,
29
- lineFeaturesCount: 0,
30
- polygonPositionsCount: 0,
31
- polygonObjectsCount: 0,
32
- polygonRingsCount: 0,
33
- polygonFeaturesCount: 0
34
- };
35
- if (arrayBuffer.byteLength > 0) {
36
- const tile = binary
37
- ? new vector_tile_2.default(new pbf_1.default(arrayBuffer))
38
- : new vector_tile_1.default(new pbf_1.default(arrayBuffer));
39
- const loaderOptions = options.mvt;
40
- const selectedLayers = Array.isArray(loaderOptions.layers)
41
- ? loaderOptions.layers
42
- : Object.keys(tile.layers);
43
- selectedLayers.forEach((layerName) => {
44
- const vectorTileLayer = tile.layers[layerName];
45
- const featureOptions = { ...loaderOptions, layerName };
46
- if (!vectorTileLayer) {
47
- return;
48
- }
49
- for (let i = 0; i < vectorTileLayer.length; i++) {
50
- const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);
51
- const decodedFeature = binary
52
- ? getDecodedFeatureBinary(vectorTileFeature, featureOptions)
53
- : getDecodedFeature(vectorTileFeature, featureOptions);
54
- features.push(decodedFeature);
55
- }
56
- });
52
+ const geometryInfo = {
53
+ coordLength: 2,
54
+ pointPositionsCount: 0,
55
+ pointFeaturesCount: 0,
56
+ linePositionsCount: 0,
57
+ linePathsCount: 0,
58
+ lineFeaturesCount: 0,
59
+ polygonPositionsCount: 0,
60
+ polygonObjectsCount: 0,
61
+ polygonRingsCount: 0,
62
+ polygonFeaturesCount: 0
63
+ };
64
+ if (arrayBuffer.byteLength <= 0) {
65
+ return [features, geometryInfo];
66
+ }
67
+ const tile = new vector_tile_2.default(new pbf_1.default(arrayBuffer));
68
+ const selectedLayers = options && Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);
69
+ selectedLayers.forEach((layerName) => {
70
+ const vectorTileLayer = tile.layers[layerName];
71
+ if (!vectorTileLayer) {
72
+ return;
57
73
  }
58
- if (binary) {
59
- const data = (0, gis_1.flatGeojsonToBinary)(features, geometryInfo);
60
- // Add the original byteLength (as a reasonable approximation of the size of the binary data)
61
- // TODO decide where to store extra fields like byteLength (header etc) and document
62
- // @ts-ignore
63
- data.byteLength = arrayBuffer.byteLength;
64
- return data;
74
+ for (let i = 0; i < vectorTileLayer.length; i++) {
75
+ const vectorTileFeature = vectorTileLayer.feature(i, geometryInfo);
76
+ const decodedFeature = getDecodedFeatureBinary(vectorTileFeature, options, layerName);
77
+ features.push(decodedFeature);
65
78
  }
79
+ });
80
+ return [features, geometryInfo];
81
+ }
82
+ function parseToGeojson(arrayBuffer, options) {
83
+ if (arrayBuffer.byteLength <= 0) {
84
+ return [];
66
85
  }
86
+ const features = [];
87
+ const tile = new vector_tile_1.default(new pbf_1.default(arrayBuffer));
88
+ const selectedLayers = Array.isArray(options.layers) ? options.layers : Object.keys(tile.layers);
89
+ selectedLayers.forEach((layerName) => {
90
+ const vectorTileLayer = tile.layers[layerName];
91
+ if (!vectorTileLayer) {
92
+ return;
93
+ }
94
+ for (let i = 0; i < vectorTileLayer.length; i++) {
95
+ const vectorTileFeature = vectorTileLayer.feature(i);
96
+ const decodedFeature = getDecodedFeature(vectorTileFeature, options, layerName);
97
+ features.push(decodedFeature);
98
+ }
99
+ });
67
100
  return features;
68
101
  }
69
- exports.default = parseMVT;
70
- /**
71
- * @param options
72
- * @returns options
73
- */
74
102
  function normalizeOptions(options) {
75
- if (options) {
76
- options = {
77
- ...options,
78
- mvt: options.mvt || {},
79
- gis: options.gis || {}
80
- };
81
- // Validate
82
- const wgs84Coordinates = options.coordinates === 'wgs84';
83
- const { tileIndex } = options;
84
- const hasTileIndex = tileIndex &&
85
- Number.isFinite(tileIndex.x) &&
86
- Number.isFinite(tileIndex.y) &&
87
- Number.isFinite(tileIndex.z);
88
- if (wgs84Coordinates && !hasTileIndex) {
89
- throw new Error('MVT Loader: WGS84 coordinates need tileIndex property. Check documentation.');
90
- }
103
+ if (!options?.mvt) {
104
+ throw new Error('mvt options required');
105
+ }
106
+ // Validate
107
+ const wgs84Coordinates = options.mvt?.coordinates === 'wgs84';
108
+ const { tileIndex } = options.mvt;
109
+ const hasTileIndex = tileIndex &&
110
+ Number.isFinite(tileIndex.x) &&
111
+ Number.isFinite(tileIndex.y) &&
112
+ Number.isFinite(tileIndex.z);
113
+ if (wgs84Coordinates && !hasTileIndex) {
114
+ throw new Error('MVT Loader: WGS84 coordinates need tileIndex property');
91
115
  }
92
- return options;
116
+ return options.mvt;
93
117
  }
94
118
  /**
95
119
  * @param feature
96
120
  * @param options
97
121
  * @returns decoded feature
98
122
  */
99
- function getDecodedFeature(feature, options) {
123
+ function getDecodedFeature(feature, options, layerName) {
100
124
  const decodedFeature = feature.toGeoJSON(options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinates);
101
125
  // Add layer name to GeoJSON properties
102
126
  if (options.layerProperty) {
103
- decodedFeature.properties[options.layerProperty] = options.layerName;
127
+ decodedFeature.properties[options.layerProperty] = layerName;
104
128
  }
105
129
  return decodedFeature;
106
130
  }
@@ -109,11 +133,11 @@ function getDecodedFeature(feature, options) {
109
133
  * @param options
110
134
  * @returns decoded binary feature
111
135
  */
112
- function getDecodedFeatureBinary(feature, options) {
136
+ function getDecodedFeatureBinary(feature, options, layerName) {
113
137
  const decodedFeature = feature.toBinaryCoordinates(options.coordinates === 'wgs84' ? options.tileIndex : transformToLocalCoordinatesBinary);
114
138
  // Add layer name to GeoJSON properties
115
139
  if (options.layerProperty && decodedFeature.properties) {
116
- decodedFeature.properties[options.layerProperty] = options.layerName;
140
+ decodedFeature.properties[options.layerProperty] = layerName;
117
141
  }
118
142
  return decodedFeature;
119
143
  }