@inovitas/infra3dapi 1.7.0 → 1.7.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.
- package/235.infra3dapi.js +2 -0
- package/235.infra3dapi.js.map +1 -0
- package/287.infra3dapi.js +2 -0
- package/287.infra3dapi.js.map +1 -0
- package/732.infra3dapi.js +2 -0
- package/732.infra3dapi.js.map +1 -0
- package/{12.infra3dapi.js → 757.infra3dapi.js} +2 -1
- package/757.infra3dapi.js.map +1 -0
- package/README.md +357 -330
- package/infra3dapi.d.ts +7 -4
- package/infra3dapi.js +2 -2
- package/{2bc1d70c511b58108958.gif → infra3dapi.js.map} +0 -0
- package/licenses.txt +23 -353
- package/package.json +6 -2
- package/005403bc8e5f26788284.jpg +0 -0
- package/1f77029fdd773d10ddab.gif +0 -0
- package/274.infra3dapi.js +0 -1
- package/505.infra3dapi.js +0 -1
- package/6a3d99a3d2dc80491364.jpg +0 -0
- package/80.infra3dapi.js +0 -1
- package/81e9296c232fd0e0c86e.jpg +0 -0
- package/c8593183238821a27cbc.gif +0 -0
- package/e970b398393900ae343f.gif +0 -0
- package/ecc862ea04d3c481e631.gif +0 -0
package/infra3dapi.d.ts
CHANGED
|
@@ -288,16 +288,19 @@ interface MultiPolygon extends GeoJsonObject {
|
|
|
288
288
|
coordinates: Position[][][];
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
interface GeometryCollection<
|
|
292
|
-
extends
|
|
291
|
+
interface GeometryCollection<
|
|
292
|
+
G extends Geometry = Geometry,
|
|
293
|
+
> extends GeoJsonObject {
|
|
293
294
|
type: "GeometryCollection";
|
|
294
295
|
geometries: G[];
|
|
295
296
|
}
|
|
296
297
|
|
|
297
298
|
type GeoJsonProperties = { [name: string]: any } | null;
|
|
298
299
|
|
|
299
|
-
interface Feature<
|
|
300
|
-
extends
|
|
300
|
+
interface Feature<
|
|
301
|
+
G extends Geometry | null = Geometry,
|
|
302
|
+
P = GeoJsonProperties,
|
|
303
|
+
> extends GeoJsonObject {
|
|
301
304
|
type: "Feature";
|
|
302
305
|
geometry: G;
|
|
303
306
|
id?: string | number | undefined;
|