@evergis/api 3.0.182 → 3.0.183
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/__generated__/LayersService.d.ts +46 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +35 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +121 -19
- package/dist/api.cjs.development.js +122 -0
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +122 -0
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +5 -3
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams,
|
|
1
|
+
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams10, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, StyleDc, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -523,6 +523,17 @@ export declare class LayersService extends Service {
|
|
|
523
523
|
* @response `200` Success
|
|
524
524
|
*/
|
|
525
525
|
getFilteredFeaturesCount({ name, ...query }: GetFilteredFeaturesCountParams): Promise<number>;
|
|
526
|
+
/**
|
|
527
|
+
* No description
|
|
528
|
+
*
|
|
529
|
+
* @tags Layers
|
|
530
|
+
* @name GetFilteredFeaturesCount1
|
|
531
|
+
* @operationId LayersController_GetFilteredFeaturesCount_1
|
|
532
|
+
* @summary Get features count according layer filter of the given name.
|
|
533
|
+
* @request POST:/layers/{name}/features/count
|
|
534
|
+
* @response `200` Success
|
|
535
|
+
*/
|
|
536
|
+
getFilteredFeaturesCount1(name: string, data: GetFilteredFeaturesCountDc): Promise<number>;
|
|
526
537
|
/**
|
|
527
538
|
* No description
|
|
528
539
|
*
|
|
@@ -567,7 +578,7 @@ export declare class LayersService extends Service {
|
|
|
567
578
|
* @request GET:/layers/{name}/{id}/metadata
|
|
568
579
|
* @response `200` Success
|
|
569
580
|
*/
|
|
570
|
-
getRasterMeta({ name, id, ...query }:
|
|
581
|
+
getRasterMeta({ name, id, ...query }: GetRasterMetaParams10): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
|
|
571
582
|
/**
|
|
572
583
|
* No description
|
|
573
584
|
*
|
|
@@ -579,6 +590,39 @@ export declare class LayersService extends Service {
|
|
|
579
590
|
* @response `200` Success
|
|
580
591
|
*/
|
|
581
592
|
createRoute(name: string, data: RouteFeatureDc): Promise<LayerUpdateInfo>;
|
|
593
|
+
/**
|
|
594
|
+
* No description
|
|
595
|
+
*
|
|
596
|
+
* @tags Layers
|
|
597
|
+
* @name ApplyStyle
|
|
598
|
+
* @operationId LayersController_ApplyStyle
|
|
599
|
+
* @summary Create data layout and image layout for given style.
|
|
600
|
+
* @request PUT:/layers/{name}/style
|
|
601
|
+
* @response `200` Success
|
|
602
|
+
*/
|
|
603
|
+
applyStyle(name: string, data: StyleDc): Promise<void>;
|
|
604
|
+
/**
|
|
605
|
+
* No description
|
|
606
|
+
*
|
|
607
|
+
* @tags Layers
|
|
608
|
+
* @name GetImageLayout
|
|
609
|
+
* @operationId LayersController_GetImageLayout
|
|
610
|
+
* @summary Get date layout.
|
|
611
|
+
* @request GET:/layers/{name}/style/sprite.png
|
|
612
|
+
* @response `200` Success
|
|
613
|
+
*/
|
|
614
|
+
getImageLayout(name: string): Promise<Blob>;
|
|
615
|
+
/**
|
|
616
|
+
* No description
|
|
617
|
+
*
|
|
618
|
+
* @tags Layers
|
|
619
|
+
* @name GetDataLayout
|
|
620
|
+
* @operationId LayersController_GetDataLayout
|
|
621
|
+
* @summary Get image layout.
|
|
622
|
+
* @request GET:/layers/{name}/style/sprite.json
|
|
623
|
+
* @response `200` Success
|
|
624
|
+
*/
|
|
625
|
+
getDataLayout(name: string): Promise<Blob>;
|
|
582
626
|
/**
|
|
583
627
|
* No description
|
|
584
628
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams4, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
49
49
|
* @request DELETE:/projects
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams6, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -17,6 +17,17 @@ export declare class StatisticService extends Service {
|
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
19
|
statisticsDb(query: StatisticsDbParams): Promise<StatisticsDc>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags Statistic
|
|
24
|
+
* @name StatisticsDb1
|
|
25
|
+
* @operationId StatisticController_StatisticsDb_1
|
|
26
|
+
* @summary Calculates statistics for layer attribute.
|
|
27
|
+
* @request POST:/statistics
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
statisticsDb1(data: GetStatisticsDc): Promise<StatisticsDc>;
|
|
20
31
|
/**
|
|
21
32
|
* No description
|
|
22
33
|
*
|
|
@@ -27,7 +38,18 @@ export declare class StatisticService extends Service {
|
|
|
27
38
|
* @request GET:/statistics/classify
|
|
28
39
|
* @response `200` Success
|
|
29
40
|
*/
|
|
30
|
-
classify(query:
|
|
41
|
+
classify(query: ClassifyParams6): Promise<ClassifyDc>;
|
|
42
|
+
/**
|
|
43
|
+
* No description
|
|
44
|
+
*
|
|
45
|
+
* @tags Statistic
|
|
46
|
+
* @name Classify1
|
|
47
|
+
* @operationId StatisticController_Classify_1
|
|
48
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
49
|
+
* @request POST:/statistics/classify
|
|
50
|
+
* @response `200` Success
|
|
51
|
+
*/
|
|
52
|
+
classify1(data: GetClassifyDc): Promise<ClassifyDc>;
|
|
31
53
|
/**
|
|
32
54
|
* No description
|
|
33
55
|
*
|
|
@@ -39,4 +61,15 @@ export declare class StatisticService extends Service {
|
|
|
39
61
|
* @response `200` Success
|
|
40
62
|
*/
|
|
41
63
|
sumOfProduct(query: SumOfProductParams): Promise<StatisticsDc>;
|
|
64
|
+
/**
|
|
65
|
+
* No description
|
|
66
|
+
*
|
|
67
|
+
* @tags Statistic
|
|
68
|
+
* @name SumOfProduct1
|
|
69
|
+
* @operationId StatisticController_SumOfProduct_1
|
|
70
|
+
* @summary Sum of product.
|
|
71
|
+
* @request POST:/statistics/sumOfProduct
|
|
72
|
+
* @response `200` Success
|
|
73
|
+
*/
|
|
74
|
+
sumOfProduct1(data: GetSumOfProductDc): Promise<StatisticsDc>;
|
|
42
75
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams8, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,7 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams8): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams9, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class WmsServerService extends Service {
|
|
|
16
16
|
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams9): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -18,7 +18,7 @@ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
|
|
|
18
18
|
};
|
|
19
19
|
export declare type AggregatedClusterSymbolDc = SymbolDc & {
|
|
20
20
|
type?: string;
|
|
21
|
-
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
21
|
+
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
22
22
|
gridSize?: number;
|
|
23
23
|
fixedCenter?: boolean;
|
|
24
24
|
aggregations?: Record<string, AggregationFunction>;
|
|
@@ -920,7 +920,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
|
|
|
920
920
|
type?: string;
|
|
921
921
|
labelSymbol?: PointLabelSymbolDc;
|
|
922
922
|
customClusterSymbol?: SvgPointSymbolDc;
|
|
923
|
-
singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
923
|
+
singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
924
924
|
fillColor?: ParameterDcColor;
|
|
925
925
|
strokeColor?: ParameterDcColor;
|
|
926
926
|
strokeWidth?: CalculatedParameterDc;
|
|
@@ -997,6 +997,16 @@ export declare type CombinedPolylineSymbolDc = SymbolDc & {
|
|
|
997
997
|
type?: string;
|
|
998
998
|
values?: SimplePolylineSymbolDc[];
|
|
999
999
|
};
|
|
1000
|
+
/**
|
|
1001
|
+
* Symbol combine multiple svg symbols.
|
|
1002
|
+
*/
|
|
1003
|
+
export declare type CombinedSvgSymbolDc = SymbolDc & {
|
|
1004
|
+
type?: string;
|
|
1005
|
+
id?: string;
|
|
1006
|
+
values?: SvgSymbolDc[];
|
|
1007
|
+
size?: number;
|
|
1008
|
+
angle?: number;
|
|
1009
|
+
};
|
|
1000
1010
|
/**
|
|
1001
1011
|
* Data contract for SPCore.Connectors.Connectors.Base.Models.Composite.CompositeLayerConfigurationDc.
|
|
1002
1012
|
*/
|
|
@@ -1158,7 +1168,7 @@ export interface CompositeServiceInfoDc {
|
|
|
1158
1168
|
*/
|
|
1159
1169
|
export declare type CompositeSymbolDc = SymbolDc & {
|
|
1160
1170
|
type?: string;
|
|
1161
|
-
childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
|
|
1171
|
+
childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
|
|
1162
1172
|
};
|
|
1163
1173
|
/**
|
|
1164
1174
|
* Get configuration information.
|
|
@@ -2054,7 +2064,7 @@ export interface FeatureSymbolDc {
|
|
|
2054
2064
|
/** @format int32 */
|
|
2055
2065
|
id: number;
|
|
2056
2066
|
/** Feature symbol. */
|
|
2057
|
-
definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2067
|
+
definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2058
2068
|
image?: string;
|
|
2059
2069
|
}
|
|
2060
2070
|
/**
|
|
@@ -2345,6 +2355,51 @@ export declare enum GeometryType {
|
|
|
2345
2355
|
Envelope = "envelope",
|
|
2346
2356
|
Multipoint = "multipoint"
|
|
2347
2357
|
}
|
|
2358
|
+
/**
|
|
2359
|
+
* Get classified attribute values data contract.
|
|
2360
|
+
*/
|
|
2361
|
+
export interface GetClassifyDc {
|
|
2362
|
+
/** Layer name. */
|
|
2363
|
+
layerName: string;
|
|
2364
|
+
/** Attribute name. */
|
|
2365
|
+
attributeName: string;
|
|
2366
|
+
/** Layer condition. */
|
|
2367
|
+
condition?: string;
|
|
2368
|
+
/**
|
|
2369
|
+
* The number of classes.
|
|
2370
|
+
* @format int32
|
|
2371
|
+
*/
|
|
2372
|
+
classes?: number;
|
|
2373
|
+
/**
|
|
2374
|
+
* Sets required values precision.
|
|
2375
|
+
* @format int32
|
|
2376
|
+
*/
|
|
2377
|
+
precision?: number;
|
|
2378
|
+
/**
|
|
2379
|
+
* Describes classification methods.
|
|
2380
|
+
*
|
|
2381
|
+
* none
|
|
2382
|
+
*
|
|
2383
|
+
* naturalBreaks
|
|
2384
|
+
*
|
|
2385
|
+
* equalInterval
|
|
2386
|
+
*
|
|
2387
|
+
* quantile
|
|
2388
|
+
*
|
|
2389
|
+
* unique
|
|
2390
|
+
*/
|
|
2391
|
+
type?: ClassificationType;
|
|
2392
|
+
/**
|
|
2393
|
+
*
|
|
2394
|
+
*
|
|
2395
|
+
* decimal
|
|
2396
|
+
*
|
|
2397
|
+
* dateTime
|
|
2398
|
+
*
|
|
2399
|
+
* text
|
|
2400
|
+
*/
|
|
2401
|
+
attributeType?: ClassifyAttributeType;
|
|
2402
|
+
}
|
|
2348
2403
|
/**
|
|
2349
2404
|
* Get features paramaters.
|
|
2350
2405
|
*/
|
|
@@ -2381,6 +2436,37 @@ export interface GetFeaturesParametersDc {
|
|
|
2381
2436
|
/** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
|
|
2382
2437
|
attributes?: string[];
|
|
2383
2438
|
}
|
|
2439
|
+
/**
|
|
2440
|
+
* Get features count with layer filter condition data contract.
|
|
2441
|
+
*/
|
|
2442
|
+
export interface GetFilteredFeaturesCountDc {
|
|
2443
|
+
/** Layer condition. */
|
|
2444
|
+
condition?: string;
|
|
2445
|
+
}
|
|
2446
|
+
/**
|
|
2447
|
+
* Get statistics data contract.
|
|
2448
|
+
*/
|
|
2449
|
+
export interface GetStatisticsDc {
|
|
2450
|
+
/** Layer name. */
|
|
2451
|
+
layerName: string;
|
|
2452
|
+
/** Attribute name. */
|
|
2453
|
+
attributeName: string;
|
|
2454
|
+
/** Condition. */
|
|
2455
|
+
condition?: string;
|
|
2456
|
+
/** Type of required statistic function. */
|
|
2457
|
+
types?: AggregationFunction[];
|
|
2458
|
+
}
|
|
2459
|
+
/**
|
|
2460
|
+
* Get sum of product data contract.
|
|
2461
|
+
*/
|
|
2462
|
+
export interface GetSumOfProductDc {
|
|
2463
|
+
/** Layer name. */
|
|
2464
|
+
layerName: string;
|
|
2465
|
+
/** Attribute name. */
|
|
2466
|
+
attributes: string[];
|
|
2467
|
+
/** Layer condition. */
|
|
2468
|
+
condition?: string;
|
|
2469
|
+
}
|
|
2384
2470
|
/**
|
|
2385
2471
|
* Map element data contract.
|
|
2386
2472
|
*/
|
|
@@ -2687,7 +2773,7 @@ export declare type LabelSymbolDc = SymbolDc & {
|
|
|
2687
2773
|
};
|
|
2688
2774
|
export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
|
|
2689
2775
|
type?: string;
|
|
2690
|
-
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2776
|
+
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
2691
2777
|
};
|
|
2692
2778
|
/**
|
|
2693
2779
|
* Information about the layer attributes and their configuration.
|
|
@@ -3075,7 +3161,7 @@ export declare type MultiPointDc = GeometryDc & {
|
|
|
3075
3161
|
*/
|
|
3076
3162
|
export declare type MultipointSymbolDc = SymbolDc & {
|
|
3077
3163
|
type?: string;
|
|
3078
|
-
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3164
|
+
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3079
3165
|
};
|
|
3080
3166
|
/**
|
|
3081
3167
|
* Information about a namespace .
|
|
@@ -3703,9 +3789,9 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3703
3789
|
maxResolution?: number;
|
|
3704
3790
|
layers?: string[];
|
|
3705
3791
|
styles?: Record<string, {
|
|
3706
|
-
point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3707
|
-
polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3708
|
-
polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3792
|
+
point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3793
|
+
polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3794
|
+
polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3709
3795
|
}>;
|
|
3710
3796
|
};
|
|
3711
3797
|
/**
|
|
@@ -5113,7 +5199,7 @@ export interface StyleDc {
|
|
|
5113
5199
|
*/
|
|
5114
5200
|
condition?: string;
|
|
5115
5201
|
/** Symbol that is used to draw the features of the layer. */
|
|
5116
|
-
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
5202
|
+
symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
5117
5203
|
/**
|
|
5118
5204
|
* Child styles. Before rendering a feature, the children style conditions are checked. If none
|
|
5119
5205
|
* of the child styles were applied, then the paren style is used to draw the feature.
|
|
@@ -5173,6 +5259,18 @@ export declare type SvgPointSymbolDc = SymbolDc & {
|
|
|
5173
5259
|
offset?: CalculatedParameterDc[];
|
|
5174
5260
|
angle?: CalculatedParameterDc;
|
|
5175
5261
|
};
|
|
5262
|
+
/**
|
|
5263
|
+
* Svg symbol settings.
|
|
5264
|
+
*/
|
|
5265
|
+
export declare type SvgSymbolDc = SymbolDc & {
|
|
5266
|
+
type?: string;
|
|
5267
|
+
id?: string;
|
|
5268
|
+
data?: string;
|
|
5269
|
+
size?: CalculatedParameterDc;
|
|
5270
|
+
fillColor?: ParameterDcColor;
|
|
5271
|
+
strokeColor?: ParameterDcColor;
|
|
5272
|
+
strokeWidth?: CalculatedParameterDc;
|
|
5273
|
+
};
|
|
5176
5274
|
/**
|
|
5177
5275
|
* Symbol category data contract.
|
|
5178
5276
|
*/
|
|
@@ -7067,7 +7165,7 @@ export interface ValidateExpressionParams {
|
|
|
7067
7165
|
/** Layer name. */
|
|
7068
7166
|
layerName: string;
|
|
7069
7167
|
}
|
|
7070
|
-
export interface
|
|
7168
|
+
export interface GetRasterMetaParams10 {
|
|
7071
7169
|
/**
|
|
7072
7170
|
* Min value for build histogram.
|
|
7073
7171
|
* @format double
|
|
@@ -7194,7 +7292,7 @@ export interface GetProjectsListParams {
|
|
|
7194
7292
|
tags?: string[];
|
|
7195
7293
|
}
|
|
7196
7294
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
7197
|
-
export interface
|
|
7295
|
+
export interface DeleteResourcesParams4 {
|
|
7198
7296
|
/** Resource names. */
|
|
7199
7297
|
names?: string[];
|
|
7200
7298
|
}
|
|
@@ -7397,9 +7495,9 @@ export interface GetFileInfoParams {
|
|
|
7397
7495
|
}
|
|
7398
7496
|
export interface StatisticsDbParams {
|
|
7399
7497
|
/** Layer name. */
|
|
7400
|
-
name
|
|
7498
|
+
name: string;
|
|
7401
7499
|
/** Attribute name. */
|
|
7402
|
-
attribute
|
|
7500
|
+
attribute: string;
|
|
7403
7501
|
/** Condition. */
|
|
7404
7502
|
condition?: string;
|
|
7405
7503
|
/**
|
|
@@ -7449,11 +7547,11 @@ export interface StatisticsDbParams {
|
|
|
7449
7547
|
*/
|
|
7450
7548
|
types?: AggregationFunction[];
|
|
7451
7549
|
}
|
|
7452
|
-
export interface
|
|
7550
|
+
export interface ClassifyParams6 {
|
|
7453
7551
|
/** Layer name. */
|
|
7454
|
-
name
|
|
7552
|
+
name: string;
|
|
7455
7553
|
/** Attribute name. */
|
|
7456
|
-
attribute
|
|
7554
|
+
attribute: string;
|
|
7457
7555
|
/** Layer condition. */
|
|
7458
7556
|
condition?: string;
|
|
7459
7557
|
/**
|
|
@@ -7493,7 +7591,7 @@ export interface ClassifyParams3 {
|
|
|
7493
7591
|
}
|
|
7494
7592
|
export interface SumOfProductParams {
|
|
7495
7593
|
/** Layer name. */
|
|
7496
|
-
name
|
|
7594
|
+
name: string;
|
|
7497
7595
|
/** Attributes to aggregate. */
|
|
7498
7596
|
attributes?: string[];
|
|
7499
7597
|
/** Layer condition. */
|
|
@@ -7582,6 +7680,10 @@ export interface GetTableListParams {
|
|
|
7582
7680
|
acl?: string;
|
|
7583
7681
|
}
|
|
7584
7682
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
7683
|
+
export interface DeleteResourcesParams8 {
|
|
7684
|
+
/** Resource names. */
|
|
7685
|
+
names?: string[];
|
|
7686
|
+
}
|
|
7585
7687
|
export interface GetTablesInfoParams {
|
|
7586
7688
|
/** Table names. */
|
|
7587
7689
|
tableNames?: string[];
|
|
@@ -7735,7 +7837,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
7735
7837
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
7736
7838
|
AcceptFormats?: string[];
|
|
7737
7839
|
}
|
|
7738
|
-
export interface
|
|
7840
|
+
export interface GetCapabilitiesParams9 {
|
|
7739
7841
|
/** Output format of service metadata. */
|
|
7740
7842
|
Format?: string;
|
|
7741
7843
|
/** Must be WMS. */
|
|
@@ -3993,6 +3993,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3993
3993
|
|
|
3994
3994
|
return this.http.get("/layers/" + name + "/features/count", query).json();
|
|
3995
3995
|
}
|
|
3996
|
+
/**
|
|
3997
|
+
* No description
|
|
3998
|
+
*
|
|
3999
|
+
* @tags Layers
|
|
4000
|
+
* @name GetFilteredFeaturesCount1
|
|
4001
|
+
* @operationId LayersController_GetFilteredFeaturesCount_1
|
|
4002
|
+
* @summary Get features count according layer filter of the given name.
|
|
4003
|
+
* @request POST:/layers/{name}/features/count
|
|
4004
|
+
* @response `200` Success
|
|
4005
|
+
*/
|
|
4006
|
+
|
|
4007
|
+
}, {
|
|
4008
|
+
key: "getFilteredFeaturesCount1",
|
|
4009
|
+
value: function getFilteredFeaturesCount1(name, data) {
|
|
4010
|
+
return this.http.post("/layers/" + name + "/features/count", data).json();
|
|
4011
|
+
}
|
|
3996
4012
|
/**
|
|
3997
4013
|
* No description
|
|
3998
4014
|
*
|
|
@@ -4085,6 +4101,54 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4085
4101
|
value: function createRoute(name, data) {
|
|
4086
4102
|
return this.http.post("/layers/" + name + "/createRoute", data).json();
|
|
4087
4103
|
}
|
|
4104
|
+
/**
|
|
4105
|
+
* No description
|
|
4106
|
+
*
|
|
4107
|
+
* @tags Layers
|
|
4108
|
+
* @name ApplyStyle
|
|
4109
|
+
* @operationId LayersController_ApplyStyle
|
|
4110
|
+
* @summary Create data layout and image layout for given style.
|
|
4111
|
+
* @request PUT:/layers/{name}/style
|
|
4112
|
+
* @response `200` Success
|
|
4113
|
+
*/
|
|
4114
|
+
|
|
4115
|
+
}, {
|
|
4116
|
+
key: "applyStyle",
|
|
4117
|
+
value: function applyStyle(name, data) {
|
|
4118
|
+
return this.http.put("/layers/" + name + "/style", data).then(() => {});
|
|
4119
|
+
}
|
|
4120
|
+
/**
|
|
4121
|
+
* No description
|
|
4122
|
+
*
|
|
4123
|
+
* @tags Layers
|
|
4124
|
+
* @name GetImageLayout
|
|
4125
|
+
* @operationId LayersController_GetImageLayout
|
|
4126
|
+
* @summary Get date layout.
|
|
4127
|
+
* @request GET:/layers/{name}/style/sprite.png
|
|
4128
|
+
* @response `200` Success
|
|
4129
|
+
*/
|
|
4130
|
+
|
|
4131
|
+
}, {
|
|
4132
|
+
key: "getImageLayout",
|
|
4133
|
+
value: function getImageLayout(name) {
|
|
4134
|
+
return this.http.get("/layers/" + name + "/style/sprite.png").blob();
|
|
4135
|
+
}
|
|
4136
|
+
/**
|
|
4137
|
+
* No description
|
|
4138
|
+
*
|
|
4139
|
+
* @tags Layers
|
|
4140
|
+
* @name GetDataLayout
|
|
4141
|
+
* @operationId LayersController_GetDataLayout
|
|
4142
|
+
* @summary Get image layout.
|
|
4143
|
+
* @request GET:/layers/{name}/style/sprite.json
|
|
4144
|
+
* @response `200` Success
|
|
4145
|
+
*/
|
|
4146
|
+
|
|
4147
|
+
}, {
|
|
4148
|
+
key: "getDataLayout",
|
|
4149
|
+
value: function getDataLayout(name) {
|
|
4150
|
+
return this.http.get("/layers/" + name + "/style/sprite.json").blob();
|
|
4151
|
+
}
|
|
4088
4152
|
/**
|
|
4089
4153
|
* No description
|
|
4090
4154
|
*
|
|
@@ -6347,6 +6411,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6347
6411
|
function statisticsDb(query) {
|
|
6348
6412
|
return this.http.get("/statistics", query).json();
|
|
6349
6413
|
}
|
|
6414
|
+
/**
|
|
6415
|
+
* No description
|
|
6416
|
+
*
|
|
6417
|
+
* @tags Statistic
|
|
6418
|
+
* @name StatisticsDb1
|
|
6419
|
+
* @operationId StatisticController_StatisticsDb_1
|
|
6420
|
+
* @summary Calculates statistics for layer attribute.
|
|
6421
|
+
* @request POST:/statistics
|
|
6422
|
+
* @response `200` Success
|
|
6423
|
+
*/
|
|
6424
|
+
|
|
6425
|
+
}, {
|
|
6426
|
+
key: "statisticsDb1",
|
|
6427
|
+
value: function statisticsDb1(data) {
|
|
6428
|
+
return this.http.post("/statistics", data).json();
|
|
6429
|
+
}
|
|
6350
6430
|
/**
|
|
6351
6431
|
* No description
|
|
6352
6432
|
*
|
|
@@ -6363,6 +6443,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6363
6443
|
value: function classify(query) {
|
|
6364
6444
|
return this.http.get("/statistics/classify", query).json();
|
|
6365
6445
|
}
|
|
6446
|
+
/**
|
|
6447
|
+
* No description
|
|
6448
|
+
*
|
|
6449
|
+
* @tags Statistic
|
|
6450
|
+
* @name Classify1
|
|
6451
|
+
* @operationId StatisticController_Classify_1
|
|
6452
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6453
|
+
* @request POST:/statistics/classify
|
|
6454
|
+
* @response `200` Success
|
|
6455
|
+
*/
|
|
6456
|
+
|
|
6457
|
+
}, {
|
|
6458
|
+
key: "classify1",
|
|
6459
|
+
value: function classify1(data) {
|
|
6460
|
+
return this.http.post("/statistics/classify", data).json();
|
|
6461
|
+
}
|
|
6366
6462
|
/**
|
|
6367
6463
|
* No description
|
|
6368
6464
|
*
|
|
@@ -6379,6 +6475,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6379
6475
|
value: function sumOfProduct(query) {
|
|
6380
6476
|
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
6381
6477
|
}
|
|
6478
|
+
/**
|
|
6479
|
+
* No description
|
|
6480
|
+
*
|
|
6481
|
+
* @tags Statistic
|
|
6482
|
+
* @name SumOfProduct1
|
|
6483
|
+
* @operationId StatisticController_SumOfProduct_1
|
|
6484
|
+
* @summary Sum of product.
|
|
6485
|
+
* @request POST:/statistics/sumOfProduct
|
|
6486
|
+
* @response `200` Success
|
|
6487
|
+
*/
|
|
6488
|
+
|
|
6489
|
+
}, {
|
|
6490
|
+
key: "sumOfProduct1",
|
|
6491
|
+
value: function sumOfProduct1(data) {
|
|
6492
|
+
return this.http.post("/statistics/sumOfProduct", data).json();
|
|
6493
|
+
}
|
|
6382
6494
|
}]);
|
|
6383
6495
|
|
|
6384
6496
|
return StatisticService;
|
|
@@ -6400,11 +6512,21 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6400
6512
|
value: function getStatistic(params) {
|
|
6401
6513
|
return this.statisticsDb(params);
|
|
6402
6514
|
}
|
|
6515
|
+
}, {
|
|
6516
|
+
key: "postStatistic",
|
|
6517
|
+
value: function postStatistic(params) {
|
|
6518
|
+
return this.statisticsDb1(params);
|
|
6519
|
+
}
|
|
6403
6520
|
}, {
|
|
6404
6521
|
key: "getClassify",
|
|
6405
6522
|
value: function getClassify(params) {
|
|
6406
6523
|
return this.classify(params);
|
|
6407
6524
|
}
|
|
6525
|
+
}, {
|
|
6526
|
+
key: "postClassify",
|
|
6527
|
+
value: function postClassify(params) {
|
|
6528
|
+
return this.classify1(params);
|
|
6529
|
+
}
|
|
6408
6530
|
}]);
|
|
6409
6531
|
|
|
6410
6532
|
return Statistic;
|