earthsdk3 3.4.0-beta.13 → 3.4.0-beta.16
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/earthsdk3.iife.js +43 -43
- package/dist/earthsdk3.js +6595 -5727
- package/dist/earthsdk3.umd.cjs +38 -38
- package/dist/types/ESObjects/general/ESFeatureLayer/FeatureLayer.d.ts +9 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/FeatureLayer.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PointLayer/index.d.ts +27 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PointLayer/index.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PointLayer/utils.d.ts +40 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PointLayer/utils.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolyLineLayer/index.d.ts +20 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolyLineLayer/index.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolygonLayer/index.d.ts +18 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolygonLayer/index.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolygonLayer/utils.d.ts +9 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/PolygonLayer/utils.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/index.d.ts +26 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/index.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/types.d.ts +587 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/types.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/utils.d.ts +392 -0
- package/dist/types/ESObjects/general/ESFeatureLayer/utils.d.ts.map +1 -0
- package/dist/types/ESObjects/general/ESPath/ESPathImpl/computeRotIfUndefined.d.ts.map +1 -1
- package/dist/types/ESObjects/general/ESPath/ESPathImpl/index.d.ts.map +1 -1
- package/dist/types/ESObjects/general/ESRtsFeatureEditing/index.d.ts.map +1 -1
- package/dist/types/ESObjects/general/index.d.ts +1 -0
- package/dist/types/ESObjects/general/index.d.ts.map +1 -1
- package/dist/types/utils/registerCreatedEventUpdate.d.ts.map +1 -1
- package/package.json +5 -4
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ESViewer } from "../../../ESViewer";
|
|
2
|
+
import { Destroyable } from "../../../xbsj-base";
|
|
3
|
+
import { ESFeatureLayer } from "./index";
|
|
4
|
+
export declare class FeatureLayer extends Destroyable {
|
|
5
|
+
private _initEvent;
|
|
6
|
+
init(): void;
|
|
7
|
+
constructor(sceneObject: ESFeatureLayer, esviewer: ESViewer);
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=FeatureLayer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FeatureLayer.d.ts","sourceRoot":"","sources":["../../../../../src/ESObjects/general/ESFeatureLayer/FeatureLayer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,OAAO,EAAE,WAAW,EAAS,MAAM,oBAAoB,CAAC;AAIxD,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAKzC,qBAAa,YAAa,SAAQ,WAAW;IACzC,OAAO,CAAC,UAAU,CAAwB;IAC1C,IAAI;gBACQ,WAAW,EAAE,cAAc,EAAE,QAAQ,EAAE,QAAQ;CAkG9D"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ESFeatureLayer } from "..";
|
|
2
|
+
import { ESJVector3D, ESJVector3DArray } from "../../../../ESJTypes";
|
|
3
|
+
import { Destroyable } from "../../../../xbsj-base";
|
|
4
|
+
import { ESGltfModel3DSymbolProps, ESHeatMap3DRendererProps, ESImageLabel3DSymbolProps, ESParticleSystemPrimitive3DSymbolProps, HtPointFeature, Labeling3DInfoProps, Point3DSymbol, Renderer3DProps, SimplePoint3DSymbolProps } from "../types";
|
|
5
|
+
export type PointLayerFeature = {
|
|
6
|
+
points: ESJVector3D;
|
|
7
|
+
} & HtPointFeature;
|
|
8
|
+
export declare class PointLayer extends Destroyable {
|
|
9
|
+
private sceneObject;
|
|
10
|
+
labelingInfo?: Labeling3DInfoProps;
|
|
11
|
+
constructor(sceneObject: ESFeatureLayer, featuresWithPoints: PointLayerFeature[], renderer?: Renderer3DProps, labelingInfo?: Labeling3DInfoProps);
|
|
12
|
+
renderLabel(feature: PointLayerFeature, labelingInfo: Labeling3DInfoProps): void;
|
|
13
|
+
renderHeatmap(points: ESJVector3DArray, heatMapInfo: ESHeatMap3DRendererProps): void;
|
|
14
|
+
render(feature: PointLayerFeature, symbol: Point3DSymbol): void;
|
|
15
|
+
_simplePointRender(feature: PointLayerFeature, symbol: SimplePoint3DSymbolProps): void;
|
|
16
|
+
_simplePointAllRender(points: ESJVector3DArray, symbol: SimplePoint3DSymbolProps): void;
|
|
17
|
+
_simpleImageRender(feature: PointLayerFeature, symbol: ESImageLabel3DSymbolProps): void;
|
|
18
|
+
_imageAllRender(points: ESJVector3DArray, symbol: ESImageLabel3DSymbolProps): void;
|
|
19
|
+
_simpleModelRender(feature: PointLayerFeature, symbol: ESGltfModel3DSymbolProps): void;
|
|
20
|
+
_modelAllRender(url: string, instances: {
|
|
21
|
+
position: ESJVector3D;
|
|
22
|
+
rotation: ESJVector3D;
|
|
23
|
+
scale: ESJVector3D;
|
|
24
|
+
}[]): void;
|
|
25
|
+
_simpleParticleRender(feature: PointLayerFeature, symbol: ESParticleSystemPrimitive3DSymbolProps): void;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ESObjects/general/ESFeatureLayer/PointLayer/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAQpD,OAAO,EAAE,wBAAwB,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,sCAAsC,EAAE,cAAc,EAAE,mBAAmB,EAAE,aAAa,EAAE,eAAe,EAA4C,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAI1R,MAAM,MAAM,iBAAiB,GAAG;IAAE,MAAM,EAAE,WAAW,CAAA;CAAE,GAAG,cAAc,CAAA;AAExE,qBAAa,UAAW,SAAQ,WAAW;IAG3B,OAAO,CAAC,WAAW;IAD/B,YAAY,CAAC,EAAE,mBAAmB,CAAC;gBACf,WAAW,EAAE,cAAc,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,EAAE,QAAQ,CAAC,EAAE,eAAe,EAAE,YAAY,CAAC,EAAE,mBAAmB;IAgKxJ,WAAW,CAAC,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,mBAAmB;IAKzE,aAAa,CAAC,MAAM,EAAE,gBAAgB,EAAE,WAAW,EAAE,wBAAwB;IAY7E,MAAM,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,aAAa;IAkBxD,kBAAkB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,wBAAwB;IAiB/E,qBAAqB,CAAC,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,wBAAwB;IAehF,kBAAkB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,yBAAyB;IA2ChF,eAAe,CAAC,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,yBAAyB;IA6C3E,kBAAkB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,wBAAwB;IAW/E,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE;QAAE,QAAQ,EAAE,WAAW,CAAC;QAAC,QAAQ,EAAE,WAAW,CAAC;QAAC,KAAK,EAAE,WAAW,CAAC;KAAE,EAAE;IAO/G,qBAAqB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,sCAAsC;CAYnG"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ESJVector3D, ESJVector3DArray } from "../../../../ESJTypes";
|
|
2
|
+
import { Renderer3DProps, RenderStyleSymbol, VisualVariable } from "../types";
|
|
3
|
+
import { PointLayerFeature } from './index';
|
|
4
|
+
export declare function getPointsSimpleSymbol(features: PointLayerFeature[], renderer: Renderer3DProps): {
|
|
5
|
+
points: ESJVector3D[];
|
|
6
|
+
symbol: RenderStyleSymbol;
|
|
7
|
+
};
|
|
8
|
+
export declare function getPointsUniqueValueSymbol(features: PointLayerFeature[], renderer: Renderer3DProps): {
|
|
9
|
+
points: ESJVector3DArray;
|
|
10
|
+
symbol: RenderStyleSymbol;
|
|
11
|
+
}[];
|
|
12
|
+
export declare function getPointsClassBreaksSymbol(features: PointLayerFeature[], renderer: Renderer3DProps): {
|
|
13
|
+
points: ESJVector3DArray;
|
|
14
|
+
symbol: RenderStyleSymbol;
|
|
15
|
+
}[];
|
|
16
|
+
export declare function getPointsGltfModelSimpleSymbol(features: PointLayerFeature[], renderer: Renderer3DProps, visualVariables?: VisualVariable[]): {
|
|
17
|
+
url: string;
|
|
18
|
+
locations: {
|
|
19
|
+
position: ESJVector3D;
|
|
20
|
+
rotation: [number, number, number];
|
|
21
|
+
scale: ESJVector3D;
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
export declare function getPointsGltfModelUniqueValueSymbol(features: PointLayerFeature[], renderer: Renderer3DProps, visualVariables?: VisualVariable[]): {
|
|
25
|
+
url: string;
|
|
26
|
+
locations: {
|
|
27
|
+
position: ESJVector3D;
|
|
28
|
+
rotation: ESJVector3D;
|
|
29
|
+
scale: ESJVector3D;
|
|
30
|
+
}[];
|
|
31
|
+
}[];
|
|
32
|
+
export declare function getPointsGltfModelClassBreaksSymbol(features: PointLayerFeature[], renderer: Renderer3DProps, visualVariables?: VisualVariable[]): {
|
|
33
|
+
url: string;
|
|
34
|
+
locations: {
|
|
35
|
+
position: ESJVector3D;
|
|
36
|
+
rotation: ESJVector3D;
|
|
37
|
+
scale: ESJVector3D;
|
|
38
|
+
}[];
|
|
39
|
+
}[];
|
|
40
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../src/ESObjects/general/ESFeatureLayer/PointLayer/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAA4B,eAAe,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAExG,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAc5C,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe;;;EAO7F;AAED,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe;YAiChE,gBAAgB;YAAU,iBAAiB;IAa7E;AAED,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe;YAsBhE,gBAAgB;YAAU,iBAAiB;IAW7E;AAED,wBAAgB,8BAA8B,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe,EAAE,eAAe,GAAE,cAAc,EAAO;;;;;;;EAe9I;AAED,wBAAgB,mCAAmC,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe,EAAE,eAAe,GAAE,cAAc,EAAO;SA8CpH,MAAM;eAAa;QAAE,QAAQ,EAAE,WAAW,CAAC;QAAC,QAAQ,EAAE,WAAW,CAAC;QAAC,KAAK,EAAE,WAAW,CAAC;KAAE,EAAE;IAezH;AAED,wBAAgB,mCAAmC,CAAC,QAAQ,EAAE,iBAAiB,EAAE,EAAE,QAAQ,EAAE,eAAe,EAAE,eAAe,GAAE,cAAc,EAAO;SAqCpH,MAAM;eAAa;QAAE,QAAQ,EAAE,WAAW,CAAC;QAAC,QAAQ,EAAE,WAAW,CAAC;QAAC,KAAK,EAAE,WAAW,CAAC;KAAE,EAAE;IAYzH"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Destroyable } from "../../../../xbsj-base";
|
|
2
|
+
import { ESFeatureLayer } from "..";
|
|
3
|
+
import { ESlineInterpolationModelLine3DSymbol3DProps, ESlineWallLine3DSymbol3DProps, ESPathLine3DSymbol3DProps, ESPipeFenceLine3DSymbol3DProps, ESPolygonFenceLine3DSymbol3DProps, HtLineFeature, Labeling3DInfoProps, Line3DSymbol, Renderer3DProps, SimpleLine3DSymbolProps } from "../types";
|
|
4
|
+
import { ESJVector3DArray } from "../../../../ESJTypes";
|
|
5
|
+
export type LineFeature = {
|
|
6
|
+
points: ESJVector3DArray;
|
|
7
|
+
} & HtLineFeature;
|
|
8
|
+
export declare class PolyLineLayer extends Destroyable {
|
|
9
|
+
private sceneObject;
|
|
10
|
+
constructor(sceneObject: ESFeatureLayer, featuresWithPoints: LineFeature[], renderer?: Renderer3DProps, labelingInfo?: Labeling3DInfoProps);
|
|
11
|
+
render(feature: LineFeature, symbol: Line3DSymbol): void;
|
|
12
|
+
_simpleLineRender(feature: LineFeature, symbol: SimpleLine3DSymbolProps): void;
|
|
13
|
+
_esPolygonFenceRender(feature: LineFeature, symbol: ESPolygonFenceLine3DSymbol3DProps): void;
|
|
14
|
+
_esPipeFenceRender(feature: LineFeature, symbol: ESPipeFenceLine3DSymbol3DProps): void;
|
|
15
|
+
_esPathRender(feature: LineFeature, symbol: ESPathLine3DSymbol3DProps): void;
|
|
16
|
+
_eslineInterpolationModelRender(feature: LineFeature, symbol: ESlineInterpolationModelLine3DSymbol3DProps): void;
|
|
17
|
+
_eslineWallRender(feature: LineFeature, symbol: ESlineWallLine3DSymbol3DProps): void;
|
|
18
|
+
renderLabel(feature: LineFeature, labelingInfo: Labeling3DInfoProps): void;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ESObjects/general/ESFeatureLayer/PolyLineLayer/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAG,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAE,2CAA2C,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,iCAAiC,EAAE,aAAa,EAAE,mBAAmB,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAEhS,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAYxD,MAAM,MAAM,WAAW,GAAG;IAAE,MAAM,EAAE,gBAAgB,CAAA;CAAE,GAAG,aAAa,CAAA;AAEtE,qBAAa,aAAc,SAAQ,WAAW;IAE9B,OAAO,CAAC,WAAW;gBAAX,WAAW,EAAE,cAAc,EAAE,kBAAkB,EAAE,WAAW,EAAE,EAAE,QAAQ,CAAC,EAAE,eAAe,EAAE,YAAY,CAAC,EAAE,mBAAmB;IA+ClJ,MAAM,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,YAAY;IAoBjD,iBAAiB,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,uBAAuB;IAqBvE,qBAAqB,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,iCAAiC;IAgBrF,kBAAkB,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,8BAA8B;IAe/E,aAAa,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,yBAAyB;IA6ErE,+BAA+B,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,2CAA2C;IAuBzG,iBAAiB,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,6BAA6B;IA0B7E,WAAW,CAAC,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,mBAAmB;CAMtE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ESFeatureLayer } from "..";
|
|
2
|
+
import { ESJVector3DArray } from "../../../../ESJTypes";
|
|
3
|
+
import { Destroyable } from "../../../../xbsj-base";
|
|
4
|
+
import { ESGeoExtrudedPolygon3DSymbolProps, HtPolygonFeature, Labeling3DInfoProps, Polygon3DSymbol, PolygonInterpolateESGltfModel3DSymbolProps, PolygonInterpolateESImageLabel3DSymbolProps, Renderer3DProps, SimplePolygon3DSymbolProps } from "../types";
|
|
5
|
+
export type PolygonFeature = {
|
|
6
|
+
points: ESJVector3DArray;
|
|
7
|
+
} & HtPolygonFeature;
|
|
8
|
+
export declare class PolygonLayer extends Destroyable {
|
|
9
|
+
private sceneObject;
|
|
10
|
+
constructor(sceneObject: ESFeatureLayer, featuresWithPoints: PolygonFeature[], renderer?: Renderer3DProps, labelingInfo?: Labeling3DInfoProps);
|
|
11
|
+
renderLabel(feature: PolygonFeature, labelingInfo: Labeling3DInfoProps): void;
|
|
12
|
+
render(feature: PolygonFeature, symbol: Polygon3DSymbol): void;
|
|
13
|
+
_simplePolygonRender(feature: PolygonFeature, symbol: SimplePolygon3DSymbolProps): void;
|
|
14
|
+
_esGeoExtrudedPolygonRender(feature: PolygonFeature, symbol: ESGeoExtrudedPolygon3DSymbolProps): void;
|
|
15
|
+
_polygonInterpolateESGltfModelRender(feature: PolygonFeature, symbol: PolygonInterpolateESGltfModel3DSymbolProps): void;
|
|
16
|
+
_polygonInterpolateESImageLabelRender(feature: PolygonFeature, symbol: PolygonInterpolateESImageLabel3DSymbolProps): void;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ESObjects/general/ESFeatureLayer/PolygonLayer/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAe,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAKpD,OAAO,EAAE,iCAAiC,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,eAAe,EAAE,0CAA0C,EAAE,2CAA2C,EAAE,eAAe,EAAE,0BAA0B,EAAE,MAAM,UAAU,CAAC;AAI3P,MAAM,MAAM,cAAc,GAAG;IAAE,MAAM,EAAE,gBAAgB,CAAA;CAAE,GAAG,gBAAgB,CAAA;AAC5E,qBAAa,YAAa,SAAQ,WAAW;IAE7B,OAAO,CAAC,WAAW;gBAAX,WAAW,EAAE,cAAc,EAAE,kBAAkB,EAAE,cAAc,EAAE,EAAE,QAAQ,CAAC,EAAE,eAAe,EAAE,YAAY,CAAC,EAAE,mBAAmB;IAmDrJ,WAAW,CAAC,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,mBAAmB;IAOtE,MAAM,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,eAAe;IAevD,oBAAoB,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,0BAA0B;IAuBhF,2BAA2B,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,iCAAiC;IAkB9F,oCAAoC,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,0CAA0C;IAoBhH,qCAAqC,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,2CAA2C;CA8BrH"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ESJVector2D, ESJVector3DArray } from '../../../../ESJTypes';
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @param points 必须首尾一致的多边形
|
|
5
|
+
* @param distance 插值距离m
|
|
6
|
+
* @returns 多边形内插值点
|
|
7
|
+
*/
|
|
8
|
+
export declare function getPolygonInterpolatePoints(points: ESJVector3DArray, distance: number): ESJVector2D[];
|
|
9
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../src/ESObjects/general/ESFeatureLayer/PolygonLayer/utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAoB,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACvF;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,iBAgBrF"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { UniteChanged } from "xbsj-base";
|
|
2
|
+
import { ESVisualObject } from "../../base";
|
|
3
|
+
import { HtFeaturesLayerProps } from "./types";
|
|
4
|
+
export declare class ESFeatureLayer extends ESVisualObject {
|
|
5
|
+
static readonly createDefaultProps: () => {
|
|
6
|
+
featureProps: import("xbsj-base").ReactiveVariable<HtFeaturesLayerProps | undefined>;
|
|
7
|
+
show: boolean;
|
|
8
|
+
collision: boolean;
|
|
9
|
+
allowPicking: boolean;
|
|
10
|
+
flyToParam: import("xbsj-base").ReactiveVariable<import("../../..").ESJFlyToParam | undefined>;
|
|
11
|
+
flyInParam: import("xbsj-base").ReactiveVariable<import("../../..").ESJFlyInParam | undefined>;
|
|
12
|
+
name: string;
|
|
13
|
+
ref: string | undefined;
|
|
14
|
+
extras: import("xbsj-base").ReactiveVariable<import("xbsj-base").JsonValue>;
|
|
15
|
+
devTags: import("xbsj-base").ReactiveVariable<string[] | undefined>;
|
|
16
|
+
execOnceFuncStr: string | undefined;
|
|
17
|
+
updateFuncStr: string | undefined;
|
|
18
|
+
toDestroyFuncStr: string | undefined;
|
|
19
|
+
};
|
|
20
|
+
static readonly type: string;
|
|
21
|
+
private featureLayerMap;
|
|
22
|
+
constructor(id?: string);
|
|
23
|
+
}
|
|
24
|
+
export interface ESFeatureLayer extends UniteChanged<ReturnType<typeof ESFeatureLayer.createDefaultProps>> {
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/ESObjects/general/ESFeatureLayer/index.ts"],"names":[],"mappings":"AACA,OAAO,EAA0B,YAAY,EAAE,MAAM,WAAW,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAG/C,qBAAa,cAAe,SAAQ,cAAc;IAE9C,gBAAyB,kBAAkB;;;;;;;;;;;;;;MAK1C;IACD,gBAAyB,IAAI,EAAE,MAAM,CAAkH;IAEvJ,OAAO,CAAC,eAAe,CAAwC;gBAEnD,EAAE,CAAC,EAAE,MAAM;CAqC1B;AAED,MAAM,WAAW,cAAe,SAAQ,YAAY,CAAC,UAAU,CAAC,OAAO,cAAc,CAAC,kBAAkB,CAAC,CAAC;CAAI"}
|