@giro3d/piero 25.10.0-beta.10
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/LICENSE +9 -0
- package/README.md +134 -0
- package/dist/Components.cjs.js +2605 -0
- package/dist/Components.es.js +43490 -0
- package/dist/assets/ParserWorker-Bd30oD5I.js +5 -0
- package/dist/assets/style.css +9 -0
- package/dist/basedecoder.cjs.js +1 -0
- package/dist/basedecoder.es.js +88 -0
- package/dist/decoder.cjs.js +1 -0
- package/dist/decoder.es.js +9 -0
- package/dist/deflate.cjs.js +1 -0
- package/dist/deflate.es.js +10 -0
- package/dist/index.cjs.js +93 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +65240 -0
- package/dist/jpeg.cjs.js +1 -0
- package/dist/jpeg.es.js +514 -0
- package/dist/lerc.cjs.js +1 -0
- package/dist/lerc.es.js +1027 -0
- package/dist/lzw.cjs.js +1 -0
- package/dist/lzw.es.js +84 -0
- package/dist/modules.cjs.js +2973 -0
- package/dist/modules.d.ts +2 -0
- package/dist/modules.es.js +87571 -0
- package/dist/packbits.cjs.js +1 -0
- package/dist/packbits.es.js +24 -0
- package/dist/pako.esm.cjs.js +1 -0
- package/dist/pako.esm.es.js +1053 -0
- package/dist/piero_logo.png +0 -0
- package/dist/piero_logo_compact.png +0 -0
- package/dist/raw.cjs.js +1 -0
- package/dist/raw.es.js +9 -0
- package/dist/sponsors/bpi_france.png +0 -0
- package/dist/sponsors/france_2030.png +0 -0
- package/dist/sponsors/france_relance.png +0 -0
- package/dist/sponsors/oslandia.png +0 -0
- package/dist/sponsors/ue_next_generation.png +0 -0
- package/dist/src/App.vue.d.ts +6 -0
- package/dist/src/api/BookmarkApi.d.ts +6 -0
- package/dist/src/api/DatasetApi.d.ts +61 -0
- package/dist/src/api/ViewApi.d.ts +4 -0
- package/dist/src/api/index.d.ts +4 -0
- package/dist/src/components/AlertToast.vue.d.ts +4 -0
- package/dist/src/components/AttributeGroup.vue.d.ts +7 -0
- package/dist/src/components/AttributeItem.vue.d.ts +6 -0
- package/dist/src/components/AttributePanel.vue.d.ts +14 -0
- package/dist/src/components/ColorFragment.vue.d.ts +6 -0
- package/dist/src/components/Configuration.d.ts +14 -0
- package/dist/src/components/CoordinateFragment.vue.d.ts +10 -0
- package/dist/src/components/DropdownView.vue.d.ts +13 -0
- package/dist/src/components/LinkFragment.vue.d.ts +10 -0
- package/dist/src/components/LoadingScreen.vue.d.ts +2 -0
- package/dist/src/components/MainView.vue.d.ts +5 -0
- package/dist/src/components/MinimapView.vue.d.ts +4 -0
- package/dist/src/components/ModalOverlay.vue.d.ts +17 -0
- package/dist/src/components/NavigationButtons.vue.d.ts +2 -0
- package/dist/src/components/OpacitySlider.vue.d.ts +10 -0
- package/dist/src/components/PanelContainer.vue.d.ts +10 -0
- package/dist/src/components/ProgressBar.vue.d.ts +14 -0
- package/dist/src/components/SearchOverlay.vue.d.ts +8 -0
- package/dist/src/components/SpinnerControl.vue.d.ts +2 -0
- package/dist/src/components/StatusBar.vue.d.ts +10 -0
- package/dist/src/components/SwitchToggle.vue.d.ts +17 -0
- package/dist/src/components/VisibilityControl.vue.d.ts +9 -0
- package/dist/src/components/atoms/ButtonArea.vue.d.ts +9 -0
- package/dist/src/components/atoms/ButtonWithIcon.vue.d.ts +11 -0
- package/dist/src/components/atoms/CompactList.vue.d.ts +9 -0
- package/dist/src/components/atoms/Icon.vue.d.ts +6 -0
- package/dist/src/components/atoms/IconList.vue.d.ts +9 -0
- package/dist/src/components/atoms/IconListButton.vue.d.ts +10 -0
- package/dist/src/components/atoms/ImportButton.vue.d.ts +13 -0
- package/dist/src/components/atoms/ListLabel.vue.d.ts +5 -0
- package/dist/src/components/atoms/ListLabelButton.vue.d.ts +11 -0
- package/dist/src/components/atoms/SectionCollapsible.vue.d.ts +20 -0
- package/dist/src/components/charts/BarChart.vue.d.ts +4 -0
- package/dist/src/components/charts/DoughnutChart.vue.d.ts +4 -0
- package/dist/src/components/panels/AboutPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/AnalysisPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/AnnotationItem.vue.d.ts +21 -0
- package/dist/src/components/panels/AnnotationPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/BasemapItem.vue.d.ts +17 -0
- package/dist/src/components/panels/BookmarkItem.vue.d.ts +16 -0
- package/dist/src/components/panels/BookmarkPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/DatagroupItem.vue.d.ts +18 -0
- package/dist/src/components/panels/DatasetItem.vue.d.ts +18 -0
- package/dist/src/components/panels/DatasetOrGroupItem.vue.d.ts +18 -0
- package/dist/src/components/panels/DatasetPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/EmptyIndicator.vue.d.ts +6 -0
- package/dist/src/components/panels/LoadingIndicator.vue.d.ts +6 -0
- package/dist/src/components/panels/MeasurementItem.vue.d.ts +17 -0
- package/dist/src/components/panels/MeasurementPanel.vue.d.ts +2 -0
- package/dist/src/components/panels/OverlayItem.vue.d.ts +19 -0
- package/dist/src/components/panels/ShareBookmarkModal.vue.d.ts +5 -0
- package/dist/src/components/panels/analysis/ClippingBox.vue.d.ts +2 -0
- package/dist/src/components/panels/analysis/CrossSection.vue.d.ts +2 -0
- package/dist/src/components/panels/analysis/FloodingPlane.vue.d.ts +2 -0
- package/dist/src/components/panels/analysis/Statistics.vue.d.ts +2 -0
- package/dist/src/components/panels/analysis/ToolWrapper.vue.d.ts +20 -0
- package/dist/src/components/toolbar/ToolBar.vue.d.ts +9 -0
- package/dist/src/components/toolbar/ToolbarButton.vue.d.ts +12 -0
- package/dist/src/config-loader.d.ts +7 -0
- package/dist/src/constants.d.ts +7 -0
- package/dist/src/context.d.ts +35 -0
- package/dist/src/createPieroApp.d.ts +31 -0
- package/dist/src/events.d.ts +30 -0
- package/dist/src/giro3d/CameraControlsInspector.d.ts +17 -0
- package/dist/src/giro3d/EntityBuilder.d.ts +21 -0
- package/dist/src/giro3d/Graticule.d.ts +20 -0
- package/dist/src/giro3d/Grid.d.ts +11 -0
- package/dist/src/giro3d/LayerBuilder.d.ts +46 -0
- package/dist/src/giro3d/Measure3D.d.ts +19 -0
- package/dist/src/giro3d/Plane.d.ts +11 -0
- package/dist/src/giro3d/Skybox.d.ts +6 -0
- package/dist/src/giro3d/entities/FeatureCollectionEntity.d.ts +41 -0
- package/dist/src/giro3d/entities/PointCloudEntity.d.ts +45 -0
- package/dist/src/giro3d/entities/TiledPointCloudEntity.d.ts +13 -0
- package/dist/src/giro3d/entities/Tiles3dEntity.d.ts +11 -0
- package/dist/src/giro3d/entities/VectorLabelsEntity.d.ts +48 -0
- package/dist/src/giro3d/entities/VectorMeshEntity.d.ts +97 -0
- package/dist/src/giro3d/entities/VectorShapeEntity.d.ts +8 -0
- package/dist/src/giro3d/entities/flatPointCloud.d.ts +2 -0
- package/dist/src/giro3d/entities/tiledIfc.d.ts +2 -0
- package/dist/src/giro3d/entities/vector.d.ts +2 -0
- package/dist/src/giro3d/sources/GeopackageSource.d.ts +20 -0
- package/dist/src/giro3d/sources/ShapefileSource.d.ts +20 -0
- package/dist/src/giro3d/sources/mixins.d.ts +60 -0
- package/dist/src/index.d.ts +17 -0
- package/dist/src/loaders/csv.d.ts +3 -0
- package/dist/src/loaders/las.d.ts +3 -0
- package/dist/src/loaders/loader.d.ts +29 -0
- package/dist/src/loaders/loader.test.d.ts +1 -0
- package/dist/src/loaders/userData.d.ts +8 -0
- package/dist/src/loaders/vector.d.ts +4 -0
- package/dist/src/module.d.ts +11 -0
- package/dist/src/modules/CityJSONLoader.d.ts +10 -0
- package/dist/src/modules/IFCLoader.d.ts +9 -0
- package/dist/src/modules/PLYLoader.d.ts +9 -0
- package/dist/src/modules/PotreeLoader.d.ts +9 -0
- package/dist/src/modules/Tour.d.ts +17 -0
- package/dist/src/modules/cityjson/CityJSONEntity.d.ts +79 -0
- package/dist/src/modules/cityjson/CityJSONEntityInspector.d.ts +8 -0
- package/dist/src/modules/ifc/IfcEntity.d.ts +87 -0
- package/dist/src/modules/ifc/IfcEntityInspector.d.ts +7 -0
- package/dist/src/modules/ifc/IfcPropertyView.vue.d.ts +6 -0
- package/dist/src/modules/ifc/IfcSubtree.vue.d.ts +7 -0
- package/dist/src/modules/index.d.ts +6 -0
- package/dist/src/modules/ply/PlyEntity.d.ts +33 -0
- package/dist/src/providers/Alticoding.d.ts +32 -0
- package/dist/src/providers/BanProvider.d.ts +11 -0
- package/dist/src/providers/Geocoding.d.ts +7 -0
- package/dist/src/providers/IgnProvider.d.ts +11 -0
- package/dist/src/services/AnalysisManager.d.ts +10 -0
- package/dist/src/services/AnnotationManager.d.ts +48 -0
- package/dist/src/services/CameraController.d.ts +99 -0
- package/dist/src/services/DatasetManager.d.ts +27 -0
- package/dist/src/services/Giro3DManager.d.ts +42 -0
- package/dist/src/services/Highlighter.d.ts +11 -0
- package/dist/src/services/LayerManager.d.ts +37 -0
- package/dist/src/services/MeasureTool.d.ts +13 -0
- package/dist/src/services/MeasurementManager.d.ts +31 -0
- package/dist/src/services/MinimapController.d.ts +19 -0
- package/dist/src/services/Picker.d.ts +53 -0
- package/dist/src/services/analysis/ClippingBoxManager.d.ts +41 -0
- package/dist/src/services/analysis/CrossSectionManager.d.ts +9 -0
- package/dist/src/services/analysis/FloodingPlaneManager.d.ts +11 -0
- package/dist/src/stores/analysis.d.ts +1571 -0
- package/dist/src/stores/annotations.d.ts +60 -0
- package/dist/src/stores/bookmarks.d.ts +21 -0
- package/dist/src/stores/camera.d.ts +287 -0
- package/dist/src/stores/datasets.d.ts +49 -0
- package/dist/src/stores/giro3d.d.ts +45 -0
- package/dist/src/stores/layers.d.ts +40 -0
- package/dist/src/stores/measurement.d.ts +45 -0
- package/dist/src/stores/modules.d.ts +11 -0
- package/dist/src/stores/notifications.d.ts +8 -0
- package/dist/src/stores/statistics.d.ts +8 -0
- package/dist/src/types/Annotation.d.ts +35 -0
- package/dist/src/types/AnnotationMode.d.ts +7 -0
- package/dist/src/types/BaseLayer.d.ts +30 -0
- package/dist/src/types/Bookmark.d.ts +19 -0
- package/dist/src/types/CameraPosition.d.ts +7 -0
- package/dist/src/types/Configuration.d.ts +94 -0
- package/dist/src/types/Dataset.d.ts +78 -0
- package/dist/src/types/Feature.d.ts +13 -0
- package/dist/src/types/FloodingPlane.d.ts +14 -0
- package/dist/src/types/IFCTypes.d.ts +5 -0
- package/dist/src/types/LayerObject.d.ts +20 -0
- package/dist/src/types/Measure.d.ts +20 -0
- package/dist/src/types/MeasurementMode.d.ts +7 -0
- package/dist/src/types/Named.d.ts +5 -0
- package/dist/src/types/NavigationMode.d.ts +2 -0
- package/dist/src/types/Notification.d.ts +8 -0
- package/dist/src/types/OLGeometry.d.ts +1 -0
- package/dist/src/types/Overlay.d.ts +24 -0
- package/dist/src/types/VectorStyle.d.ts +31 -0
- package/dist/src/types/Viewbox.d.ts +7 -0
- package/dist/src/types/configuration/analysis.d.ts +26 -0
- package/dist/src/types/configuration/bookmark.d.ts +16 -0
- package/dist/src/types/configuration/camera.d.ts +19 -0
- package/dist/src/types/configuration/color.d.ts +18 -0
- package/dist/src/types/configuration/datasets/cityjson.d.ts +9 -0
- package/dist/src/types/configuration/datasets/core.d.ts +49 -0
- package/dist/src/types/configuration/datasets/featureCollection.d.ts +6 -0
- package/dist/src/types/configuration/datasets/ifc.d.ts +10 -0
- package/dist/src/types/configuration/datasets/index.d.ts +27 -0
- package/dist/src/types/configuration/datasets/layer.d.ts +43 -0
- package/dist/src/types/configuration/datasets/ply.d.ts +10 -0
- package/dist/src/types/configuration/datasets/pointCloud.d.ts +12 -0
- package/dist/src/types/configuration/datasets/potreePointCloud.d.ts +10 -0
- package/dist/src/types/configuration/datasets/tiledIfc.d.ts +9 -0
- package/dist/src/types/configuration/datasets/tiledPointCloud.d.ts +9 -0
- package/dist/src/types/configuration/datasets/vector.d.ts +34 -0
- package/dist/src/types/configuration/features.d.ts +2 -0
- package/dist/src/types/configuration/geographic.d.ts +51 -0
- package/dist/src/types/configuration/layers/core.d.ts +50 -0
- package/dist/src/types/configuration/layers/index.d.ts +49 -0
- package/dist/src/types/configuration/sources/bingMaps.d.ts +5 -0
- package/dist/src/types/configuration/sources/core/baseConfig.d.ts +70 -0
- package/dist/src/types/configuration/sources/core/tiled.d.ts +19 -0
- package/dist/src/types/configuration/sources/core/vector.d.ts +13 -0
- package/dist/src/types/configuration/sources/core/vectorTile.d.ts +8 -0
- package/dist/src/types/configuration/sources/customVector.d.ts +7 -0
- package/dist/src/types/configuration/sources/customVectorTile.d.ts +8 -0
- package/dist/src/types/configuration/sources/geojson.d.ts +5 -0
- package/dist/src/types/configuration/sources/geotiff.d.ts +8 -0
- package/dist/src/types/configuration/sources/gpx.d.ts +5 -0
- package/dist/src/types/configuration/sources/kml.d.ts +5 -0
- package/dist/src/types/configuration/sources/mvt.d.ts +10 -0
- package/dist/src/types/configuration/sources/osm.d.ts +5 -0
- package/dist/src/types/configuration/sources/stadiaMaps.d.ts +5 -0
- package/dist/src/types/configuration/sources/wms.d.ts +15 -0
- package/dist/src/types/configuration/sources/wmts.d.ts +15 -0
- package/dist/src/types/configuration/sources/xyz.d.ts +9 -0
- package/dist/src/types/utilities.d.ts +5 -0
- package/dist/src/utils/Components.d.ts +8 -0
- package/dist/src/utils/Configuration.d.ts +15 -0
- package/dist/src/utils/Download.d.ts +11 -0
- package/dist/src/utils/Fetcher.d.ts +77 -0
- package/dist/src/utils/Measure.d.ts +7 -0
- package/dist/src/utils/OLFeatures.d.ts +57 -0
- package/dist/src/utils/Projections.d.ts +10 -0
- package/dist/src/utils/Types.d.ts +11 -0
- package/dist/webimage.cjs.js +1 -0
- package/dist/webimage.es.js +19 -0
- package/package.json +100 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { Alticoder } from '../providers/Alticoding';
|
|
2
|
+
import { PolygonOptions } from '@giro3d/giro3d/renderer/geometries/GeometryConverter';
|
|
3
|
+
import { default as Feature, FeatureLike } from 'ol/Feature';
|
|
4
|
+
import { default as FeatureFormat } from 'ol/format/Feature';
|
|
5
|
+
import { LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon } from 'ol/geom';
|
|
6
|
+
import { Group } from '../../../../node_modules/three';
|
|
7
|
+
export type SimpleGeometryType = 'Point' | 'MultiPoint' | 'LineString' | 'MultiLineString' | 'Polygon' | 'MultiPolygon';
|
|
8
|
+
export type SimpleGeometry = Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon;
|
|
9
|
+
export type SimpleFeature = Feature<SimpleGeometry>;
|
|
10
|
+
/**
|
|
11
|
+
* Converts data into OpenLayers features
|
|
12
|
+
*
|
|
13
|
+
* @param data - Data
|
|
14
|
+
* @param format - OpenLayers format
|
|
15
|
+
* @param dataProjection - Projection used in the data (by default EPSG:4326)
|
|
16
|
+
* @param featureProjection - Output projection (typically the one used by Giro3D instance)
|
|
17
|
+
* @returns Features
|
|
18
|
+
*/
|
|
19
|
+
declare function readFeatures(data: string, format: FeatureFormat, dataProjection: string | undefined, featureProjection: string): Promise<FeatureLike[]>;
|
|
20
|
+
/**
|
|
21
|
+
* Filters features read by {@link readFeatures} into {@link SimpleFeature} usable by `OlFeature2Mesh`.
|
|
22
|
+
* Unsupported features are simply ignored and filtered-out.
|
|
23
|
+
*
|
|
24
|
+
* @param features - Features
|
|
25
|
+
* @returns Simple features
|
|
26
|
+
*/
|
|
27
|
+
declare function toSimpleFeatures(features: FeatureLike[]): SimpleFeature[];
|
|
28
|
+
/**
|
|
29
|
+
* Converts data into OpenLayers features
|
|
30
|
+
*
|
|
31
|
+
* @param data - Data
|
|
32
|
+
* @param format - OpenLayers format
|
|
33
|
+
* @param dataProjection - Projection used in the data (by default EPSG:4326)
|
|
34
|
+
* @param featureProjection - Output projection (typically the one used by Giro3D instance)
|
|
35
|
+
* @returns Features
|
|
36
|
+
*/
|
|
37
|
+
declare function readSimpleFeatures(data: string, format: FeatureFormat, dataProjection: string, featureProjection: string): Promise<SimpleFeature[]>;
|
|
38
|
+
declare function fillZCoordinates(features: SimpleFeature[], altitude: number, noDataValue: number): void;
|
|
39
|
+
declare function fetchZCoordinates(features: SimpleFeature[], featureProjection: string, alticoder: Alticoder, offset: number, noDataValue: number): Promise<void>;
|
|
40
|
+
/**
|
|
41
|
+
* Converts a list of features into Threejs meshes.
|
|
42
|
+
* Meshes are automatically translated around their center to avoid weird side-effects.
|
|
43
|
+
*
|
|
44
|
+
* @param olFeatures - Features to convert
|
|
45
|
+
* @param polygonOptions - Options to pass to the geometry converter.
|
|
46
|
+
* @returns Group of meshes
|
|
47
|
+
*/
|
|
48
|
+
declare function toMeshes(olFeatures: SimpleFeature[], polygonOptions?: PolygonOptions): Group;
|
|
49
|
+
declare const _default: {
|
|
50
|
+
readFeatures: typeof readFeatures;
|
|
51
|
+
readSimpleFeatures: typeof readSimpleFeatures;
|
|
52
|
+
toSimpleFeatures: typeof toSimpleFeatures;
|
|
53
|
+
fetchZCoordinates: typeof fetchZCoordinates;
|
|
54
|
+
fillZCoordinates: typeof fillZCoordinates;
|
|
55
|
+
toMeshes: typeof toMeshes;
|
|
56
|
+
};
|
|
57
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Loads a Projection info and registers it in Giro3D if needed
|
|
3
|
+
* @param projection - Projection code
|
|
4
|
+
* @returns EPSG string (e.g. `EPSG:2154`)
|
|
5
|
+
*/
|
|
6
|
+
declare function loadProjCrsIfNeeded(projection: string): Promise<string>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
loadProjCrsIfNeeded: typeof loadProjCrsIfNeeded;
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Color, Vector3 } from '../../../../node_modules/three';
|
|
2
|
+
type Link = {
|
|
3
|
+
href: string;
|
|
4
|
+
title: string;
|
|
5
|
+
type?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const isObject: (obj: unknown) => obj is object;
|
|
8
|
+
export declare const isLink: (obj: unknown) => obj is Link;
|
|
9
|
+
export declare const isColor: (obj: unknown) => obj is Color;
|
|
10
|
+
export declare const isVector3: (obj: unknown) => obj is Vector3;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./basedecoder.cjs.js");class d extends r.BaseDecoder{constructor(){if(super(),typeof createImageBitmap>"u")throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");if(typeof document>"u"&&typeof OffscreenCanvas>"u")throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available")}async decode(c,n){const o=new Blob([n]),e=await createImageBitmap(o);let t;typeof document<"u"?(t=document.createElement("canvas"),t.width=e.width,t.height=e.height):t=new OffscreenCanvas(e.width,e.height);const a=t.getContext("2d");return a.drawImage(e,0,0),a.getImageData(0,0,e.width,e.height).data.buffer}}exports.default=d;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { B as r } from "./basedecoder.es.js";
|
|
2
|
+
class s extends r {
|
|
3
|
+
constructor() {
|
|
4
|
+
if (super(), typeof createImageBitmap > "u")
|
|
5
|
+
throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");
|
|
6
|
+
if (typeof document > "u" && typeof OffscreenCanvas > "u")
|
|
7
|
+
throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available");
|
|
8
|
+
}
|
|
9
|
+
async decode(i, n) {
|
|
10
|
+
const o = new Blob([n]), e = await createImageBitmap(o);
|
|
11
|
+
let t;
|
|
12
|
+
typeof document < "u" ? (t = document.createElement("canvas"), t.width = e.width, t.height = e.height) : t = new OffscreenCanvas(e.width, e.height);
|
|
13
|
+
const a = t.getContext("2d");
|
|
14
|
+
return a.drawImage(e, 0, 0), a.getImageData(0, 0, e.width, e.height).data.buffer;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
s as default
|
|
19
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@giro3d/piero",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "25.10.0-beta.10",
|
|
5
|
+
"description": "A web application for 3D geospatial data visualization, powered by Giro3D",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"front-end",
|
|
8
|
+
"web",
|
|
9
|
+
"framework",
|
|
10
|
+
"webgl",
|
|
11
|
+
"webgl2",
|
|
12
|
+
"geography",
|
|
13
|
+
"gis",
|
|
14
|
+
"geospatial",
|
|
15
|
+
"3d",
|
|
16
|
+
"3D",
|
|
17
|
+
"three",
|
|
18
|
+
"three.js",
|
|
19
|
+
"openlayers",
|
|
20
|
+
"map",
|
|
21
|
+
"layer",
|
|
22
|
+
"visualization",
|
|
23
|
+
"pointcloud",
|
|
24
|
+
"3dtiles",
|
|
25
|
+
"raster",
|
|
26
|
+
"vector",
|
|
27
|
+
"geojson",
|
|
28
|
+
"geometry",
|
|
29
|
+
"giro3d"
|
|
30
|
+
],
|
|
31
|
+
"types": "dist/index.d.ts",
|
|
32
|
+
"main": "dist/index.cjs.js",
|
|
33
|
+
"module": "dist/index.es.js",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"import": "./dist/index.es.js",
|
|
37
|
+
"require": "./dist/index.cjs.js",
|
|
38
|
+
"types": "./dist/index.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./modules": {
|
|
41
|
+
"import": "./dist/modules.es.js",
|
|
42
|
+
"require": "./dist/modules.cjs.js",
|
|
43
|
+
"types": "./dist/modules.d.ts"
|
|
44
|
+
},
|
|
45
|
+
"./piero.css": "./dist/assets/style.css"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist"
|
|
49
|
+
],
|
|
50
|
+
"sideEffects": [
|
|
51
|
+
"**/*.css"
|
|
52
|
+
],
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://gitlab.com/giro3d/piero.git"
|
|
56
|
+
},
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://gitlab.com/giro3d/piero/-/issues"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public",
|
|
63
|
+
"registry": "https://registry.npmjs.org/"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://piero.giro3d.org/",
|
|
66
|
+
"scripts": {
|
|
67
|
+
"prepublishOnly": "npm run build-library",
|
|
68
|
+
"build-library": "NODE_OPTIONS=--max-old-space-size=8192 vite build",
|
|
69
|
+
"package-library": "npm run build-library && npm pack"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"vue": "^3.4.20",
|
|
73
|
+
"@giro3d/giro3d": "^0.43.0",
|
|
74
|
+
"ol": "^9.2.4",
|
|
75
|
+
"three": "^0.170.0"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@loaders.gl/core": "^4.1.1",
|
|
79
|
+
"@loaders.gl/csv": "^4.1.1",
|
|
80
|
+
"@loaders.gl/geopackage": "^4.1.1",
|
|
81
|
+
"@loaders.gl/las": "^4.1.1",
|
|
82
|
+
"@loaders.gl/shapefile": "^4.1.1",
|
|
83
|
+
"@popperjs/core": "^2.11.8",
|
|
84
|
+
"@tarekraafat/autocomplete.js": "^10.2.7",
|
|
85
|
+
"openbim-components": "1.1.5",
|
|
86
|
+
"web-ifc": "^0.0.44",
|
|
87
|
+
"bootstrap": "^5.3.3",
|
|
88
|
+
"cityjson-threejs-loader": "github:cityjson/cityjson-threejs-loader",
|
|
89
|
+
"bootstrap-icons": "^1.11.3",
|
|
90
|
+
"camera-controls": "^2.10.1",
|
|
91
|
+
"chart.js": "^3.9.1",
|
|
92
|
+
"chroma-js": "^2.4.2",
|
|
93
|
+
"d3-dsv": "^1.2.0",
|
|
94
|
+
"font-gis": "^1.0.5",
|
|
95
|
+
"pinia": "^2.1.7",
|
|
96
|
+
"proj4": "^2.9.0",
|
|
97
|
+
"shepherd.js": "^11.2.0",
|
|
98
|
+
"regenerator-runtime": "^0.14.1"
|
|
99
|
+
}
|
|
100
|
+
}
|