@evergis/api 4.1.1 → 4.1.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/dist/Api.d.ts +11 -11
- package/dist/EventEmitter.d.ts +11 -0
- package/dist/__generated__/AccountService.d.ts +12 -0
- package/dist/__generated__/DataSourceService.d.ts +30 -6
- package/dist/__generated__/EqlService.d.ts +1 -13
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +50 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +124 -257
- package/dist/api.cjs.development.js +1157 -469
- 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 +1178 -480
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Notification.d.ts +3 -3
- package/dist/services/Projects.d.ts +1 -1
- package/package.json +2 -3
- package/dist/__generated__/WmsServerService.d.ts +0 -69
|
@@ -5,6 +5,20 @@ export interface AccessControlListDc {
|
|
|
5
5
|
/** All available permissions list. */
|
|
6
6
|
data?: RolePermissionDc[];
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
|
|
11
|
+
Shared
|
|
12
|
+
|
|
13
|
+
Public
|
|
14
|
+
|
|
15
|
+
My
|
|
16
|
+
*/
|
|
17
|
+
export declare enum AccessMode {
|
|
18
|
+
Shared = "Shared",
|
|
19
|
+
Public = "Public",
|
|
20
|
+
My = "My"
|
|
21
|
+
}
|
|
8
22
|
/**
|
|
9
23
|
* Active worker data contract.
|
|
10
24
|
*/
|
|
@@ -723,6 +737,28 @@ export interface CameraListDc {
|
|
|
723
737
|
/** Check if request success. */
|
|
724
738
|
success?: boolean;
|
|
725
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* Catalog configuration data contract.
|
|
742
|
+
*/
|
|
743
|
+
export interface CatalogConfigurationDc {
|
|
744
|
+
/** Configuration id. */
|
|
745
|
+
id?: string;
|
|
746
|
+
/**
|
|
747
|
+
*
|
|
748
|
+
*
|
|
749
|
+
* Default
|
|
750
|
+
*
|
|
751
|
+
* DevConfiguration
|
|
752
|
+
*/
|
|
753
|
+
type?: ConfigurationType;
|
|
754
|
+
/** Configuration data. */
|
|
755
|
+
configuration?: any;
|
|
756
|
+
/**
|
|
757
|
+
* Updated at.
|
|
758
|
+
* @format date-time
|
|
759
|
+
*/
|
|
760
|
+
updatedAt?: string;
|
|
761
|
+
}
|
|
726
762
|
/**
|
|
727
763
|
* Resource catalog item.
|
|
728
764
|
*/
|
|
@@ -899,6 +935,13 @@ export interface ClassifyResultObject {
|
|
|
899
935
|
/** Count. */
|
|
900
936
|
count?: any;
|
|
901
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* Tile geometry clipping configuration data contract.
|
|
940
|
+
*/
|
|
941
|
+
export interface ClippingInfoDc {
|
|
942
|
+
/** Tile geometry clipping configuration information by scale. */
|
|
943
|
+
scaleItems?: Record<string, TileGeometryClippingInfoDc>;
|
|
944
|
+
}
|
|
902
945
|
/**
|
|
903
946
|
* Description of a table column.
|
|
904
947
|
*/
|
|
@@ -1045,6 +1088,17 @@ export declare enum ConfigurationErrorEnum {
|
|
|
1045
1088
|
TableWithoutColumns = "TableWithoutColumns",
|
|
1046
1089
|
InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
|
|
1047
1090
|
}
|
|
1091
|
+
/**
|
|
1092
|
+
*
|
|
1093
|
+
|
|
1094
|
+
Default
|
|
1095
|
+
|
|
1096
|
+
DevConfiguration
|
|
1097
|
+
*/
|
|
1098
|
+
export declare enum ConfigurationType {
|
|
1099
|
+
Default = "Default",
|
|
1100
|
+
DevConfiguration = "DevConfiguration"
|
|
1101
|
+
}
|
|
1048
1102
|
/**
|
|
1049
1103
|
* Describes resource to copy.
|
|
1050
1104
|
*/
|
|
@@ -1275,6 +1329,8 @@ export interface DataSourceDc {
|
|
|
1275
1329
|
* S3
|
|
1276
1330
|
*
|
|
1277
1331
|
* GisServer
|
|
1332
|
+
*
|
|
1333
|
+
* Spark
|
|
1278
1334
|
*/
|
|
1279
1335
|
type?: DataSourceType;
|
|
1280
1336
|
/** Tags. */
|
|
@@ -1300,6 +1356,8 @@ export interface DataSourceInfoDc {
|
|
|
1300
1356
|
* S3
|
|
1301
1357
|
*
|
|
1302
1358
|
* GisServer
|
|
1359
|
+
*
|
|
1360
|
+
* Spark
|
|
1303
1361
|
*/
|
|
1304
1362
|
type?: DataSourceType;
|
|
1305
1363
|
/** Tags. */
|
|
@@ -1333,12 +1391,15 @@ Trino
|
|
|
1333
1391
|
S3
|
|
1334
1392
|
|
|
1335
1393
|
GisServer
|
|
1394
|
+
|
|
1395
|
+
Spark
|
|
1336
1396
|
*/
|
|
1337
1397
|
export declare enum DataSourceType {
|
|
1338
1398
|
Postgres = "Postgres",
|
|
1339
1399
|
Trino = "Trino",
|
|
1340
1400
|
S3 = "S3",
|
|
1341
|
-
GisServer = "GisServer"
|
|
1401
|
+
GisServer = "GisServer",
|
|
1402
|
+
Spark = "Spark"
|
|
1342
1403
|
}
|
|
1343
1404
|
/**
|
|
1344
1405
|
* Configuration of a table for feature layer.
|
|
@@ -1811,6 +1872,8 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1811
1872
|
copyrightText?: string;
|
|
1812
1873
|
/** Client data storage. Storage isn't used by server. */
|
|
1813
1874
|
clientData?: any;
|
|
1875
|
+
/** Client style data storage. Storage isn't used by server. */
|
|
1876
|
+
clientStyle?: any;
|
|
1814
1877
|
/** Card configuration. Storage isn't used by server. */
|
|
1815
1878
|
cardConfiguration?: any;
|
|
1816
1879
|
/** The type of the resource. */
|
|
@@ -1940,15 +2003,6 @@ export interface FilterResponseDc {
|
|
|
1940
2003
|
/** Id of the filter. */
|
|
1941
2004
|
id?: string;
|
|
1942
2005
|
}
|
|
1943
|
-
/**
|
|
1944
|
-
* Information about function.
|
|
1945
|
-
*/
|
|
1946
|
-
export interface FunctionInfoDc {
|
|
1947
|
-
/** Function name. */
|
|
1948
|
-
name?: string;
|
|
1949
|
-
/** Description. */
|
|
1950
|
-
description?: string;
|
|
1951
|
-
}
|
|
1952
2006
|
/**
|
|
1953
2007
|
* Geocode result.
|
|
1954
2008
|
*/
|
|
@@ -2321,7 +2375,7 @@ export interface LayerDefinitionDc {
|
|
|
2321
2375
|
/** The name of the attribute that is used as a displayed name of a feature in the layer. */
|
|
2322
2376
|
titleAttribute?: string;
|
|
2323
2377
|
/** The name of the attribute that is used for assigning geometry value for the feature. */
|
|
2324
|
-
geometryAttribute
|
|
2378
|
+
geometryAttribute?: string;
|
|
2325
2379
|
/**
|
|
2326
2380
|
*
|
|
2327
2381
|
*
|
|
@@ -2386,7 +2440,6 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
|
|
|
2386
2440
|
attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
|
|
2387
2441
|
condition?: string | null;
|
|
2388
2442
|
featuresLimit?: number;
|
|
2389
|
-
extentOffset?: number;
|
|
2390
2443
|
clientStyle?: any;
|
|
2391
2444
|
};
|
|
2392
2445
|
/**
|
|
@@ -2401,15 +2454,15 @@ export interface ListResourcesDc {
|
|
|
2401
2454
|
*/
|
|
2402
2455
|
filter?: string;
|
|
2403
2456
|
/**
|
|
2404
|
-
* Filter exists resources by owner.
|
|
2405
2457
|
*
|
|
2406
|
-
* My
|
|
2407
2458
|
*
|
|
2408
2459
|
* Shared
|
|
2409
2460
|
*
|
|
2410
2461
|
* Public
|
|
2462
|
+
*
|
|
2463
|
+
* My
|
|
2411
2464
|
*/
|
|
2412
|
-
ownerFilter?:
|
|
2465
|
+
ownerFilter?: AccessMode;
|
|
2413
2466
|
/** Resources types filter. */
|
|
2414
2467
|
resourceTypes?: CatalogResourceType[];
|
|
2415
2468
|
/** Resources subtypes filter. */
|
|
@@ -2557,20 +2610,6 @@ export interface OperationExtendedProjectInfoDcV2 {
|
|
|
2557
2610
|
op?: string;
|
|
2558
2611
|
from?: string;
|
|
2559
2612
|
}
|
|
2560
|
-
/**
|
|
2561
|
-
* Filter exists resources by owner.
|
|
2562
|
-
|
|
2563
|
-
My
|
|
2564
|
-
|
|
2565
|
-
Shared
|
|
2566
|
-
|
|
2567
|
-
Public
|
|
2568
|
-
*/
|
|
2569
|
-
export declare enum OwnerFilter {
|
|
2570
|
-
My = "My",
|
|
2571
|
-
Shared = "Shared",
|
|
2572
|
-
Public = "Public"
|
|
2573
|
-
}
|
|
2574
2613
|
/**
|
|
2575
2614
|
* Features list definition.
|
|
2576
2615
|
*/
|
|
@@ -2599,7 +2638,7 @@ export interface PagedListDataSourceInfoDc {
|
|
|
2599
2638
|
offset?: number;
|
|
2600
2639
|
/** @format int32 */
|
|
2601
2640
|
limit?: number;
|
|
2602
|
-
items?: (ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
|
|
2641
|
+
items?: (ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc | SparkDataSourceInfoDc)[];
|
|
2603
2642
|
}
|
|
2604
2643
|
export interface PagedListExtendedUserInfoDc {
|
|
2605
2644
|
/** @format int64 */
|
|
@@ -3026,6 +3065,12 @@ export interface ProxyServiceInfoDc {
|
|
|
3026
3065
|
legend?: ProxyLayerLegendDc;
|
|
3027
3066
|
/** Copyright text. */
|
|
3028
3067
|
copyrightText?: string;
|
|
3068
|
+
/** Client data storage. Storage isn't used by server. */
|
|
3069
|
+
clientData?: any;
|
|
3070
|
+
/** Client style data storage. Storage isn't used by server. */
|
|
3071
|
+
clientStyle?: any;
|
|
3072
|
+
/** Card configuration. Storage isn't used by server. */
|
|
3073
|
+
cardConfiguration?: any;
|
|
3029
3074
|
/** The type of the resource. */
|
|
3030
3075
|
type: string;
|
|
3031
3076
|
/**
|
|
@@ -3217,8 +3262,8 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
|
|
|
3217
3262
|
clientStyle?: any;
|
|
3218
3263
|
condition?: string | null;
|
|
3219
3264
|
featuresLimit?: number;
|
|
3220
|
-
extentOffset?: number;
|
|
3221
3265
|
simplify?: SimplifyInfoDc;
|
|
3266
|
+
clipping?: ClippingInfoDc;
|
|
3222
3267
|
createTable?: boolean;
|
|
3223
3268
|
};
|
|
3224
3269
|
/**
|
|
@@ -3303,6 +3348,8 @@ export interface QueryLayerServiceInfoDc {
|
|
|
3303
3348
|
copyrightText?: string;
|
|
3304
3349
|
/** Client data storage. Storage isn't used by server. */
|
|
3305
3350
|
clientData?: any;
|
|
3351
|
+
/** Client style data storage. Storage isn't used by server. */
|
|
3352
|
+
clientStyle?: any;
|
|
3306
3353
|
/** Card configuration. Storage isn't used by server. */
|
|
3307
3354
|
cardConfiguration?: any;
|
|
3308
3355
|
/** The type of the resource. */
|
|
@@ -3605,6 +3652,10 @@ export interface RemoteTileServiceInfoDc {
|
|
|
3605
3652
|
sourceUrlMask?: string;
|
|
3606
3653
|
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
3607
3654
|
sourceServers?: string[];
|
|
3655
|
+
/** Client data storage. Storage isn't used by server. */
|
|
3656
|
+
clientData?: any;
|
|
3657
|
+
/** Card configuration. Storage isn't used by server. */
|
|
3658
|
+
cardConfiguration?: any;
|
|
3608
3659
|
/** The type of the resource. */
|
|
3609
3660
|
type: string;
|
|
3610
3661
|
/**
|
|
@@ -3934,7 +3985,6 @@ export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3934
3985
|
clientStyle?: any;
|
|
3935
3986
|
condition?: string | null;
|
|
3936
3987
|
featuresLimit?: number;
|
|
3937
|
-
extentOffset?: number;
|
|
3938
3988
|
};
|
|
3939
3989
|
/**
|
|
3940
3990
|
* RouteTableConfigurationDc.
|
|
@@ -4012,11 +4062,8 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4012
4062
|
/** Base64 encoded image - icon of the resource. */
|
|
4013
4063
|
icon?: string;
|
|
4014
4064
|
/**
|
|
4015
|
-
*
|
|
4016
|
-
*
|
|
4017
|
-
* If the owner user is set, a configuration will be created for that user.
|
|
4018
|
-
* Administrator permissions are required to perform this operation.
|
|
4019
|
-
*
|
|
4065
|
+
* If the owner user is set, a configuration will be created for that user.
|
|
4066
|
+
* Administrator permissions are required to perform this operation.
|
|
4020
4067
|
*/
|
|
4021
4068
|
owner?: string;
|
|
4022
4069
|
/** Copyright text. */
|
|
@@ -4211,6 +4258,23 @@ export interface SpTaskMethodConfiguration {
|
|
|
4211
4258
|
export declare type SpTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
|
|
4212
4259
|
method?: string | null;
|
|
4213
4260
|
};
|
|
4261
|
+
/**
|
|
4262
|
+
* Postgres connection data source connection.
|
|
4263
|
+
*/
|
|
4264
|
+
export declare type SparkDataSourceDc = DataSourceDc & {
|
|
4265
|
+
type?: DataSourceType;
|
|
4266
|
+
endpoint?: string | null;
|
|
4267
|
+
userName?: string | null;
|
|
4268
|
+
token?: string | null;
|
|
4269
|
+
};
|
|
4270
|
+
/**
|
|
4271
|
+
* Postgres data source info.
|
|
4272
|
+
*/
|
|
4273
|
+
export declare type SparkDataSourceInfoDc = DataSourceInfoDc & {
|
|
4274
|
+
endpoint?: string | null;
|
|
4275
|
+
username?: string | null;
|
|
4276
|
+
token?: string | null;
|
|
4277
|
+
};
|
|
4214
4278
|
/**
|
|
4215
4279
|
* Spatial reference information data contract.
|
|
4216
4280
|
*/
|
|
@@ -4920,6 +4984,10 @@ export interface TileCatalogServiceInfoDc {
|
|
|
4920
4984
|
tileInfo: TileInfoDc;
|
|
4921
4985
|
/** Copyright text. */
|
|
4922
4986
|
copyrightText?: string;
|
|
4987
|
+
/** Client data storage. Storage isn't used by server. */
|
|
4988
|
+
clientData?: any;
|
|
4989
|
+
/** Card configuration. Storage isn't used by server. */
|
|
4990
|
+
cardConfiguration?: any;
|
|
4923
4991
|
/** The type of the resource. */
|
|
4924
4992
|
type: string;
|
|
4925
4993
|
/**
|
|
@@ -5020,6 +5088,18 @@ export interface TileCatalogServiceInfoDc {
|
|
|
5020
5088
|
export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
|
|
5021
5089
|
type?: string | null;
|
|
5022
5090
|
};
|
|
5091
|
+
/**
|
|
5092
|
+
* Tile geometry clipping information data contract.
|
|
5093
|
+
*/
|
|
5094
|
+
export interface TileGeometryClippingInfoDc {
|
|
5095
|
+
/**
|
|
5096
|
+
* Buffer size in tile coordinate space for geometry clippig. Defaults to 256.
|
|
5097
|
+
* @format int32
|
|
5098
|
+
*/
|
|
5099
|
+
buffer?: number;
|
|
5100
|
+
/** Control if geometries are clipped or encoded as-is. Defaults to true. */
|
|
5101
|
+
clipGeometry?: boolean;
|
|
5102
|
+
}
|
|
5023
5103
|
/**
|
|
5024
5104
|
* Tile info structure.
|
|
5025
5105
|
*/
|
|
@@ -5991,8 +6071,8 @@ export interface SuggestParams {
|
|
|
5991
6071
|
providerName: string;
|
|
5992
6072
|
}
|
|
5993
6073
|
export interface GetDataSchemaParams {
|
|
5994
|
-
/**
|
|
5995
|
-
|
|
6074
|
+
/** Resource id. */
|
|
6075
|
+
resourceId?: string;
|
|
5996
6076
|
}
|
|
5997
6077
|
export interface ReadPartParams {
|
|
5998
6078
|
/** Name of the layer. */
|
|
@@ -6409,7 +6489,7 @@ export interface ValidateExpressionParams {
|
|
|
6409
6489
|
/** Layer name. */
|
|
6410
6490
|
layerName: string;
|
|
6411
6491
|
}
|
|
6412
|
-
export interface
|
|
6492
|
+
export interface GetRasterMetaParams7 {
|
|
6413
6493
|
/**
|
|
6414
6494
|
* Min value for build histogram.
|
|
6415
6495
|
* @format double
|
|
@@ -6470,7 +6550,7 @@ export interface GetProjectsListParams {
|
|
|
6470
6550
|
/** Filter layers by set of tags. */
|
|
6471
6551
|
tags?: string[];
|
|
6472
6552
|
}
|
|
6473
|
-
export interface
|
|
6553
|
+
export interface DeleteResourcesParams3 {
|
|
6474
6554
|
/** Resource names. */
|
|
6475
6555
|
names?: string[];
|
|
6476
6556
|
}
|
|
@@ -6488,6 +6568,8 @@ export interface GetProjectEnvelopeParams {
|
|
|
6488
6568
|
/** The name of the project. */
|
|
6489
6569
|
name: string;
|
|
6490
6570
|
}
|
|
6571
|
+
export declare type PatchProjectConfigurationPayload = Operation[];
|
|
6572
|
+
export declare type PutProjectConfigurationPayload = any;
|
|
6491
6573
|
export interface GetAllScriptMethodsParams {
|
|
6492
6574
|
/** ResourceId. */
|
|
6493
6575
|
resourceId?: string;
|
|
@@ -6689,7 +6771,7 @@ export interface GetTableListParams {
|
|
|
6689
6771
|
/** All available permissions list. */
|
|
6690
6772
|
acl?: string;
|
|
6691
6773
|
}
|
|
6692
|
-
export interface
|
|
6774
|
+
export interface DeleteResourcesParams4 {
|
|
6693
6775
|
/** Resource names. */
|
|
6694
6776
|
names?: string[];
|
|
6695
6777
|
}
|
|
@@ -6804,221 +6886,6 @@ export interface GetPublicCapabilitiesParams {
|
|
|
6804
6886
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6805
6887
|
AcceptFormats?: string[];
|
|
6806
6888
|
}
|
|
6807
|
-
export interface GetCapabilitiesParams7 {
|
|
6808
|
-
/** Output format of service metadata. */
|
|
6809
|
-
Format?: string;
|
|
6810
|
-
/** Must be WMS. */
|
|
6811
|
-
Service?: string;
|
|
6812
|
-
/** Request name. */
|
|
6813
|
-
Request?: string;
|
|
6814
|
-
/** Request version. */
|
|
6815
|
-
Version?: string;
|
|
6816
|
-
}
|
|
6817
|
-
export interface GetMapParams {
|
|
6818
|
-
/** Comma-separated list of one or more map layers. */
|
|
6819
|
-
Layers?: string;
|
|
6820
|
-
/** Array of one or more map layers. */
|
|
6821
|
-
LayerNames?: string[];
|
|
6822
|
-
/** Comma-separated list of one rendering style per requested layer. */
|
|
6823
|
-
Styles?: string;
|
|
6824
|
-
/** Coordinate reference system for version 1.3.0. */
|
|
6825
|
-
Crs?: string;
|
|
6826
|
-
/** Comma-separated list of bounding box corners (lower left, upper right) in CRS units. */
|
|
6827
|
-
Bbox?: string;
|
|
6828
|
-
/** @format double */
|
|
6829
|
-
'BoundingBox.Width'?: number;
|
|
6830
|
-
/** @format double */
|
|
6831
|
-
'BoundingBox.Height'?: number;
|
|
6832
|
-
/** @format int32 */
|
|
6833
|
-
'BoundingBox.Center.Dimensions'?: number;
|
|
6834
|
-
/** @format int32 */
|
|
6835
|
-
'BoundingBox.HalfSize.Dimensions'?: number;
|
|
6836
|
-
/**
|
|
6837
|
-
* Width in pixels of map picture.
|
|
6838
|
-
* @format int32
|
|
6839
|
-
*/
|
|
6840
|
-
Width?: number;
|
|
6841
|
-
/**
|
|
6842
|
-
* Height in pixels of map picture.
|
|
6843
|
-
* @format int32
|
|
6844
|
-
*/
|
|
6845
|
-
Height?: number;
|
|
6846
|
-
/** Output format of map. */
|
|
6847
|
-
Format?: string;
|
|
6848
|
-
/** Background transparency of map. */
|
|
6849
|
-
Transparent?: boolean;
|
|
6850
|
-
/** Hexadecimal red-green-blue colour value for the background color. */
|
|
6851
|
-
Bgcolor?: string;
|
|
6852
|
-
/** The format in which exceptions are to be reported by the WMS. */
|
|
6853
|
-
Exceptions?: string;
|
|
6854
|
-
/** Time value of layer desired. */
|
|
6855
|
-
Time?: string;
|
|
6856
|
-
/** Elevation of layer desired. */
|
|
6857
|
-
Elevation?: string;
|
|
6858
|
-
/** Must be WMS. */
|
|
6859
|
-
Service?: string;
|
|
6860
|
-
/** Request name. */
|
|
6861
|
-
Request?: string;
|
|
6862
|
-
/** Request version. */
|
|
6863
|
-
Version?: string;
|
|
6864
|
-
}
|
|
6865
|
-
export interface GetFeatureInfoParams {
|
|
6866
|
-
/** Comma-separated list of one or more layers to be queried. */
|
|
6867
|
-
Query_layers?: string;
|
|
6868
|
-
/** Array of one or more map layers. */
|
|
6869
|
-
QueryLayerNames?: string[];
|
|
6870
|
-
/** Return format of feature information (MIME type). */
|
|
6871
|
-
Info_format?: string;
|
|
6872
|
-
/**
|
|
6873
|
-
* i coordinate in pixels of feature in Map CS.
|
|
6874
|
-
* @format int32
|
|
6875
|
-
*/
|
|
6876
|
-
I?: number;
|
|
6877
|
-
/**
|
|
6878
|
-
* j coordinate in pixels of feature in Map CS.
|
|
6879
|
-
* @format int32
|
|
6880
|
-
*/
|
|
6881
|
-
J?: number;
|
|
6882
|
-
/**
|
|
6883
|
-
* Number of features about which to return information.
|
|
6884
|
-
* @format int32
|
|
6885
|
-
*/
|
|
6886
|
-
Feature_count?: number;
|
|
6887
|
-
/** Comma-separated list of one or more map layers. */
|
|
6888
|
-
Layers?: string;
|
|
6889
|
-
/** Array of one or more map layers. */
|
|
6890
|
-
LayerNames?: string[];
|
|
6891
|
-
/** Comma-separated list of one rendering style per requested layer. */
|
|
6892
|
-
Styles?: string;
|
|
6893
|
-
/** Coordinate reference system for version 1.3.0. */
|
|
6894
|
-
Crs?: string;
|
|
6895
|
-
/** Comma-separated list of bounding box corners (lower left, upper right) in CRS units. */
|
|
6896
|
-
Bbox?: string;
|
|
6897
|
-
/** @format double */
|
|
6898
|
-
'BoundingBox.Width'?: number;
|
|
6899
|
-
/** @format double */
|
|
6900
|
-
'BoundingBox.Height'?: number;
|
|
6901
|
-
/** @format int32 */
|
|
6902
|
-
'BoundingBox.Center.Dimensions'?: number;
|
|
6903
|
-
/** @format int32 */
|
|
6904
|
-
'BoundingBox.HalfSize.Dimensions'?: number;
|
|
6905
|
-
/**
|
|
6906
|
-
* Width in pixels of map picture.
|
|
6907
|
-
* @format int32
|
|
6908
|
-
*/
|
|
6909
|
-
Width?: number;
|
|
6910
|
-
/**
|
|
6911
|
-
* Height in pixels of map picture.
|
|
6912
|
-
* @format int32
|
|
6913
|
-
*/
|
|
6914
|
-
Height?: number;
|
|
6915
|
-
/** Output format of map. */
|
|
6916
|
-
Format?: string;
|
|
6917
|
-
/** Background transparency of map. */
|
|
6918
|
-
Transparent?: boolean;
|
|
6919
|
-
/** Hexadecimal red-green-blue colour value for the background color. */
|
|
6920
|
-
Bgcolor?: string;
|
|
6921
|
-
/** The format in which exceptions are to be reported by the WMS. */
|
|
6922
|
-
Exceptions?: string;
|
|
6923
|
-
/** Time value of layer desired. */
|
|
6924
|
-
Time?: string;
|
|
6925
|
-
/** Elevation of layer desired. */
|
|
6926
|
-
Elevation?: string;
|
|
6927
|
-
/** Must be WMS. */
|
|
6928
|
-
Service?: string;
|
|
6929
|
-
/** Request name. */
|
|
6930
|
-
Request?: string;
|
|
6931
|
-
/** Request version. */
|
|
6932
|
-
Version?: string;
|
|
6933
|
-
}
|
|
6934
|
-
export interface GetLegendGraphicParams {
|
|
6935
|
-
/** Specification version for SLD-specification. */
|
|
6936
|
-
SLD_version?: string;
|
|
6937
|
-
/** Layer for which to produce legend graphic. */
|
|
6938
|
-
Layer?: string;
|
|
6939
|
-
/**
|
|
6940
|
-
* This gives the MIME type of the file format in which to return the legend graphic.
|
|
6941
|
-
* Allowed values are the same as for the FORMAT= parameter of the WMS GetMap request.
|
|
6942
|
-
*/
|
|
6943
|
-
Format?: string;
|
|
6944
|
-
/**
|
|
6945
|
-
* Style of layer for which to produce legend graphic.
|
|
6946
|
-
* If not present, the default style is selected.
|
|
6947
|
-
* The style may be any valid style available for a layer, including non-SLD internally-defined styles.
|
|
6948
|
-
*/
|
|
6949
|
-
Style?: string;
|
|
6950
|
-
/**
|
|
6951
|
-
* Feature type for which to produce the legend graphic.
|
|
6952
|
-
* This is not needed if the layer has only a single feature type.
|
|
6953
|
-
*/
|
|
6954
|
-
FeatureType?: string;
|
|
6955
|
-
/**
|
|
6956
|
-
* Rule of style to produce legend graphic for, if applicable.
|
|
6957
|
-
* In the case that a style has multiple rules but no specific rule is selected,
|
|
6958
|
-
* then the map server is obligated to produce a graphic that is representative of all of the rules of the style.
|
|
6959
|
-
*/
|
|
6960
|
-
Rule?: string;
|
|
6961
|
-
/** Type of OWS ("WFS" or "WCS"). */
|
|
6962
|
-
Remote_ows_type?: string;
|
|
6963
|
-
/** base URL of OWS. */
|
|
6964
|
-
Remote_ows_url?: string;
|
|
6965
|
-
/**
|
|
6966
|
-
* Coverage for which to produce the legend graphic.
|
|
6967
|
-
* This is not needed if the layer has only a single coverage.
|
|
6968
|
-
*/
|
|
6969
|
-
Coverage?: string;
|
|
6970
|
-
/**
|
|
6971
|
-
* In the case that a rule is not specified for a style,
|
|
6972
|
-
* this parameter may assist the server in selecting a more appropriate representative graphic by eliminating internal rules that are out-ofscope.
|
|
6973
|
-
* This value is a standardized scale denominator, defined in Symbology Encoding.
|
|
6974
|
-
* @format double
|
|
6975
|
-
*/
|
|
6976
|
-
Scale?: number;
|
|
6977
|
-
/**
|
|
6978
|
-
* This parameter specifies a reference to an external SLD document.
|
|
6979
|
-
* It works in the same way as the SLD= parameter of the WMS GetMap operation.
|
|
6980
|
-
*/
|
|
6981
|
-
SLD?: string;
|
|
6982
|
-
/**
|
|
6983
|
-
* This parameter allows an SLD document to be included directly in an HTTP-GET request.
|
|
6984
|
-
* It works in the same way as the SLD_BODY= parameter of the WMS GetMap operation.
|
|
6985
|
-
*/
|
|
6986
|
-
SLD_BODY?: string;
|
|
6987
|
-
/**
|
|
6988
|
-
* This gives a hint for the width of the returned graphic in pixels.
|
|
6989
|
-
* Vector-graphics can use this value as a hint for the level of detail to include.
|
|
6990
|
-
* @format int32
|
|
6991
|
-
*/
|
|
6992
|
-
Width?: number;
|
|
6993
|
-
/**
|
|
6994
|
-
* This gives a hint for the height of the returned graphic in pixels.
|
|
6995
|
-
* @format int32
|
|
6996
|
-
*/
|
|
6997
|
-
Height?: number;
|
|
6998
|
-
/**
|
|
6999
|
-
* This gives the MIME type of the format in which to return exceptions.
|
|
7000
|
-
* Allowed values are the same as for the EXCEPTIONS= parameter of the WMS GetMap request.
|
|
7001
|
-
*/
|
|
7002
|
-
Exceptions?: string;
|
|
7003
|
-
/** Must be WMS. */
|
|
7004
|
-
Service?: string;
|
|
7005
|
-
/** Request name. */
|
|
7006
|
-
Request?: string;
|
|
7007
|
-
/** Request version. */
|
|
7008
|
-
Version?: string;
|
|
7009
|
-
}
|
|
7010
|
-
export interface GetCapabilities1Params {
|
|
7011
|
-
/** Output format of service metadata. */
|
|
7012
|
-
Format?: string;
|
|
7013
|
-
/** Must be WMS. */
|
|
7014
|
-
Service?: string;
|
|
7015
|
-
/** Request name. */
|
|
7016
|
-
Request?: string;
|
|
7017
|
-
/** Request version. */
|
|
7018
|
-
Version?: string;
|
|
7019
|
-
/** Layer or project name. */
|
|
7020
|
-
name: string;
|
|
7021
|
-
}
|
|
7022
6889
|
export interface ProcessRequestParams {
|
|
7023
6890
|
/** Layer name. */
|
|
7024
6891
|
layer?: string;
|