@evergis/api 3.0.170 → 3.0.173
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 +20 -20
- package/README.md +21 -21
- package/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +1 -1
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/CamerasService.d.ts +1 -1
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/EqlTestService.d.ts +13 -2
- package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/GeneralService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/IceRouterService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +13 -2
- package/dist/__generated__/LayersService.d.ts +7 -7
- package/dist/__generated__/NamespaceService.d.ts +1 -1
- package/dist/__generated__/NavigationService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +1 -1
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/S3Service.d.ts +1 -1
- package/dist/__generated__/SchedulerService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +1 -1
- package/dist/__generated__/SpatialReferencesService.d.ts +1 -1
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +3 -3
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/__generated__/SymbolStorageService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +3 -3
- package/dist/__generated__/TagsService.d.ts +1 -1
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/UniversalSearchService.d.ts +1 -1
- package/dist/__generated__/VectorTileService.d.ts +1 -1
- package/dist/__generated__/WfsServerService.d.ts +1 -1
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +264 -186
- package/dist/api.cjs.development.js +58 -50
- 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 +237 -229
- package/dist/api.esm.js.map +1 -1
- package/package.json +6 -4
package/dist/api.esm.js
CHANGED
|
@@ -30,9 +30,6 @@ function _defineProperties(target, props) {
|
|
|
30
30
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
31
31
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
32
32
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
33
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
34
|
-
writable: false
|
|
35
|
-
});
|
|
36
33
|
return Constructor;
|
|
37
34
|
}
|
|
38
35
|
|
|
@@ -66,9 +63,6 @@ function _inherits(subClass, superClass) {
|
|
|
66
63
|
configurable: true
|
|
67
64
|
}
|
|
68
65
|
});
|
|
69
|
-
Object.defineProperty(subClass, "prototype", {
|
|
70
|
-
writable: false
|
|
71
|
-
});
|
|
72
66
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
73
67
|
}
|
|
74
68
|
|
|
@@ -127,8 +121,6 @@ function _assertThisInitialized(self) {
|
|
|
127
121
|
function _possibleConstructorReturn(self, call) {
|
|
128
122
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
129
123
|
return call;
|
|
130
|
-
} else if (call !== void 0) {
|
|
131
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
132
124
|
}
|
|
133
125
|
|
|
134
126
|
return _assertThisInitialized(self);
|
|
@@ -162,7 +154,7 @@ function _superPropBase(object, property) {
|
|
|
162
154
|
return object;
|
|
163
155
|
}
|
|
164
156
|
|
|
165
|
-
function _get() {
|
|
157
|
+
function _get(target, property, receiver) {
|
|
166
158
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
167
159
|
_get = Reflect.get;
|
|
168
160
|
} else {
|
|
@@ -173,14 +165,14 @@ function _get() {
|
|
|
173
165
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
174
166
|
|
|
175
167
|
if (desc.get) {
|
|
176
|
-
return desc.get.call(
|
|
168
|
+
return desc.get.call(receiver);
|
|
177
169
|
}
|
|
178
170
|
|
|
179
171
|
return desc.value;
|
|
180
172
|
};
|
|
181
173
|
}
|
|
182
174
|
|
|
183
|
-
return _get
|
|
175
|
+
return _get(target, property, receiver || target);
|
|
184
176
|
}
|
|
185
177
|
|
|
186
178
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -315,7 +307,7 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
|
|
|
315
307
|
|
|
316
308
|
/**
|
|
317
309
|
* @title Spatial Processing Core API
|
|
318
|
-
* @version 1.
|
|
310
|
+
* @version 1.5.1
|
|
319
311
|
* @baseUrl /sp
|
|
320
312
|
*/
|
|
321
313
|
|
|
@@ -386,7 +378,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
386
378
|
const _excluded = ["taskId", "layerName"];
|
|
387
379
|
/**
|
|
388
380
|
* @title Spatial Processing Core API
|
|
389
|
-
* @version 1.
|
|
381
|
+
* @version 1.5.1
|
|
390
382
|
* @baseUrl /sp
|
|
391
383
|
*/
|
|
392
384
|
|
|
@@ -454,7 +446,7 @@ var ApiEvent;
|
|
|
454
446
|
|
|
455
447
|
/**
|
|
456
448
|
* @title Spatial Processing Core API
|
|
457
|
-
* @version 1.
|
|
449
|
+
* @version 1.5.1
|
|
458
450
|
* @baseUrl /sp
|
|
459
451
|
*/
|
|
460
452
|
|
|
@@ -511,7 +503,7 @@ const _excluded$1 = ["cameraId"],
|
|
|
511
503
|
_excluded5 = ["cameraId"];
|
|
512
504
|
/**
|
|
513
505
|
* @title Spatial Processing Core API
|
|
514
|
-
* @version 1.
|
|
506
|
+
* @version 1.5.1
|
|
515
507
|
* @baseUrl /sp
|
|
516
508
|
*/
|
|
517
509
|
|
|
@@ -684,7 +676,7 @@ let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
|
684
676
|
|
|
685
677
|
/**
|
|
686
678
|
* @title Spatial Processing Core API
|
|
687
|
-
* @version 1.
|
|
679
|
+
* @version 1.5.1
|
|
688
680
|
* @baseUrl /sp
|
|
689
681
|
*/
|
|
690
682
|
|
|
@@ -836,7 +828,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
|
|
|
836
828
|
|
|
837
829
|
/**
|
|
838
830
|
* @title Spatial Processing Core API
|
|
839
|
-
* @version 1.
|
|
831
|
+
* @version 1.5.1
|
|
840
832
|
* @baseUrl /sp
|
|
841
833
|
*/
|
|
842
834
|
|
|
@@ -946,7 +938,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
946
938
|
|
|
947
939
|
/**
|
|
948
940
|
* @title Spatial Processing Core API
|
|
949
|
-
* @version 1.
|
|
941
|
+
* @version 1.5.1
|
|
950
942
|
* @baseUrl /sp
|
|
951
943
|
*/
|
|
952
944
|
|
|
@@ -1030,7 +1022,7 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
1030
1022
|
|
|
1031
1023
|
/**
|
|
1032
1024
|
* @title Spatial Processing Core API
|
|
1033
|
-
* @version 1.
|
|
1025
|
+
* @version 1.5.1
|
|
1034
1026
|
* @baseUrl /sp
|
|
1035
1027
|
*/
|
|
1036
1028
|
|
|
@@ -1125,6 +1117,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
1125
1117
|
value: function getExternalPbfLayers(query) {
|
|
1126
1118
|
return this.http.get("/import/pbf", query).json();
|
|
1127
1119
|
}
|
|
1120
|
+
/**
|
|
1121
|
+
* No description
|
|
1122
|
+
*
|
|
1123
|
+
* @tags ImportService
|
|
1124
|
+
* @name GetExternalPbfFeatures
|
|
1125
|
+
* @operationId ImportServiceController_GetExternalPbfFeatures
|
|
1126
|
+
* @summary Get features list in external PBF layer.
|
|
1127
|
+
* @request GET:/import/pbf/features
|
|
1128
|
+
* @response `200` Success
|
|
1129
|
+
*/
|
|
1130
|
+
|
|
1131
|
+
}, {
|
|
1132
|
+
key: "getExternalPbfFeatures",
|
|
1133
|
+
value: function getExternalPbfFeatures(query) {
|
|
1134
|
+
return this.http.get("/import/pbf/features", query).json();
|
|
1135
|
+
}
|
|
1128
1136
|
/**
|
|
1129
1137
|
* No description
|
|
1130
1138
|
*
|
|
@@ -1210,7 +1218,7 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
1210
1218
|
|
|
1211
1219
|
/**
|
|
1212
1220
|
* @title Spatial Processing Core API
|
|
1213
|
-
* @version 1.
|
|
1221
|
+
* @version 1.5.1
|
|
1214
1222
|
* @baseUrl /sp
|
|
1215
1223
|
*/
|
|
1216
1224
|
|
|
@@ -1366,8 +1374,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
1366
1374
|
|| event.code === 4002
|
|
1367
1375
|
/* InvalidSession */
|
|
1368
1376
|
) {
|
|
1369
|
-
|
|
1370
|
-
|
|
1377
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
1378
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
1371
1379
|
_this.connectStatus = ConnectionStatus.Break;
|
|
1372
1380
|
_this.reconnectTries++;
|
|
1373
1381
|
|
|
@@ -1492,7 +1500,7 @@ let NotificationEvent = /*#__PURE__*/_createClass(function NotificationEvent(dat
|
|
|
1492
1500
|
|
|
1493
1501
|
/**
|
|
1494
1502
|
* @title Spatial Processing Core API
|
|
1495
|
-
* @version 1.
|
|
1503
|
+
* @version 1.5.1
|
|
1496
1504
|
* @baseUrl /sp
|
|
1497
1505
|
*/
|
|
1498
1506
|
|
|
@@ -1934,7 +1942,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
1934
1942
|
const taskProgress = await this.getTaskProgress(id);
|
|
1935
1943
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
1936
1944
|
|
|
1937
|
-
const taskResultCallback = async _ref => {
|
|
1945
|
+
const taskResultCallback = async (_ref) => {
|
|
1938
1946
|
let {
|
|
1939
1947
|
data
|
|
1940
1948
|
} = _ref;
|
|
@@ -1999,7 +2007,7 @@ const _excluded$2 = ["name"],
|
|
|
1999
2007
|
_excluded20 = ["name", "id"];
|
|
2000
2008
|
/**
|
|
2001
2009
|
* @title Spatial Processing Core API
|
|
2002
|
-
* @version 1.
|
|
2010
|
+
* @version 1.5.1
|
|
2003
2011
|
* @baseUrl /sp
|
|
2004
2012
|
*/
|
|
2005
2013
|
|
|
@@ -2473,15 +2481,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2473
2481
|
*
|
|
2474
2482
|
* @tags Layers
|
|
2475
2483
|
* @name GetFeatures
|
|
2476
|
-
* @operationId
|
|
2484
|
+
* @operationId LayersController_GetFeatures
|
|
2477
2485
|
* @summary Returns list of the layer features.
|
|
2478
2486
|
* @request POST:/layers/{name}/features/query
|
|
2479
2487
|
* @response `200` Success
|
|
2480
2488
|
*/
|
|
2481
2489
|
|
|
2482
2490
|
}, {
|
|
2483
|
-
key: "
|
|
2484
|
-
value: function
|
|
2491
|
+
key: "getFeatures",
|
|
2492
|
+
value: function getFeatures(name, data) {
|
|
2485
2493
|
return this.http.post("/layers/" + name + "/features/query", data).json();
|
|
2486
2494
|
}
|
|
2487
2495
|
/**
|
|
@@ -2489,15 +2497,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2489
2497
|
*
|
|
2490
2498
|
* @tags Layers
|
|
2491
2499
|
* @name GetFeatures1
|
|
2492
|
-
* @operationId
|
|
2500
|
+
* @operationId LayersController_GetFeatures_1
|
|
2493
2501
|
* @summary Returns list of the layer features.
|
|
2494
2502
|
* @request GET:/layers/{name}/features
|
|
2495
2503
|
* @response `200` Success
|
|
2496
2504
|
*/
|
|
2497
2505
|
|
|
2498
2506
|
}, {
|
|
2499
|
-
key: "
|
|
2500
|
-
value: function
|
|
2507
|
+
key: "getFeatures1",
|
|
2508
|
+
value: function getFeatures1(_ref) {
|
|
2501
2509
|
let {
|
|
2502
2510
|
name
|
|
2503
2511
|
} = _ref,
|
|
@@ -3265,7 +3273,7 @@ const _excluded$4 = ["name"],
|
|
|
3265
3273
|
_excluded4$2 = ["name"];
|
|
3266
3274
|
/**
|
|
3267
3275
|
* @title Spatial Processing Core API
|
|
3268
|
-
* @version 1.
|
|
3276
|
+
* @version 1.5.1
|
|
3269
3277
|
* @baseUrl /sp
|
|
3270
3278
|
*/
|
|
3271
3279
|
|
|
@@ -3777,7 +3785,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
3777
3785
|
|
|
3778
3786
|
/**
|
|
3779
3787
|
* @title Spatial Processing Core API
|
|
3780
|
-
* @version 1.
|
|
3788
|
+
* @version 1.5.1
|
|
3781
3789
|
* @baseUrl /sp
|
|
3782
3790
|
*/
|
|
3783
3791
|
|
|
@@ -4268,12 +4276,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
4268
4276
|
}, {
|
|
4269
4277
|
key: "getDependentNames",
|
|
4270
4278
|
value: function getDependentNames(deps, depType) {
|
|
4271
|
-
return deps.filter(_ref => {
|
|
4279
|
+
return deps.filter((_ref) => {
|
|
4272
4280
|
let {
|
|
4273
4281
|
type
|
|
4274
4282
|
} = _ref;
|
|
4275
4283
|
return type === depType;
|
|
4276
|
-
}).map(_ref2 => {
|
|
4284
|
+
}).map((_ref2) => {
|
|
4277
4285
|
let {
|
|
4278
4286
|
name
|
|
4279
4287
|
} = _ref2;
|
|
@@ -4287,7 +4295,7 @@ let Resources = /*#__PURE__*/function () {
|
|
|
4287
4295
|
|
|
4288
4296
|
/**
|
|
4289
4297
|
* @title Spatial Processing Core API
|
|
4290
|
-
* @version 1.
|
|
4298
|
+
* @version 1.5.1
|
|
4291
4299
|
* @baseUrl /sp
|
|
4292
4300
|
*/
|
|
4293
4301
|
|
|
@@ -4422,7 +4430,7 @@ const _excluded$5 = ["providerName"],
|
|
|
4422
4430
|
_excluded3$3 = ["providerName"];
|
|
4423
4431
|
/**
|
|
4424
4432
|
* @title Spatial Processing Core API
|
|
4425
|
-
* @version 1.
|
|
4433
|
+
* @version 1.5.1
|
|
4426
4434
|
* @baseUrl /sp
|
|
4427
4435
|
*/
|
|
4428
4436
|
|
|
@@ -4538,7 +4546,7 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
|
|
|
4538
4546
|
|
|
4539
4547
|
/**
|
|
4540
4548
|
* @title Spatial Processing Core API
|
|
4541
|
-
* @version 1.
|
|
4549
|
+
* @version 1.5.1
|
|
4542
4550
|
* @baseUrl /sp
|
|
4543
4551
|
*/
|
|
4544
4552
|
|
|
@@ -4606,7 +4614,7 @@ let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
|
|
|
4606
4614
|
|
|
4607
4615
|
/**
|
|
4608
4616
|
* @title Spatial Processing Core API
|
|
4609
|
-
* @version 1.
|
|
4617
|
+
* @version 1.5.1
|
|
4610
4618
|
* @baseUrl /sp
|
|
4611
4619
|
*/
|
|
4612
4620
|
|
|
@@ -4640,7 +4648,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
4640
4648
|
|
|
4641
4649
|
/**
|
|
4642
4650
|
* @title Spatial Processing Core API
|
|
4643
|
-
* @version 1.
|
|
4651
|
+
* @version 1.5.1
|
|
4644
4652
|
* @baseUrl /sp
|
|
4645
4653
|
*/
|
|
4646
4654
|
|
|
@@ -4708,7 +4716,7 @@ let General = /*#__PURE__*/function (_GeneralService) {
|
|
|
4708
4716
|
|
|
4709
4717
|
/**
|
|
4710
4718
|
* @title Spatial Processing Core API
|
|
4711
|
-
* @version 1.
|
|
4719
|
+
* @version 1.5.1
|
|
4712
4720
|
* @baseUrl /sp
|
|
4713
4721
|
*/
|
|
4714
4722
|
|
|
@@ -4808,7 +4816,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
|
4808
4816
|
|
|
4809
4817
|
/**
|
|
4810
4818
|
* @title Spatial Processing Core API
|
|
4811
|
-
* @version 1.
|
|
4819
|
+
* @version 1.5.1
|
|
4812
4820
|
* @baseUrl /sp
|
|
4813
4821
|
*/
|
|
4814
4822
|
|
|
@@ -5484,7 +5492,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
5484
5492
|
const _excluded$6 = ["username"];
|
|
5485
5493
|
/**
|
|
5486
5494
|
* @title Spatial Processing Core API
|
|
5487
|
-
* @version 1.
|
|
5495
|
+
* @version 1.5.1
|
|
5488
5496
|
* @baseUrl /sp
|
|
5489
5497
|
*/
|
|
5490
5498
|
|
|
@@ -5638,7 +5646,7 @@ let AccountPreview = /*#__PURE__*/function (_AccountPreviewServic) {
|
|
|
5638
5646
|
|
|
5639
5647
|
/**
|
|
5640
5648
|
* @title Spatial Processing Core API
|
|
5641
|
-
* @version 1.
|
|
5649
|
+
* @version 1.5.1
|
|
5642
5650
|
* @baseUrl /sp
|
|
5643
5651
|
*/
|
|
5644
5652
|
|
|
@@ -5903,7 +5911,7 @@ let External = /*#__PURE__*/function (_ExternalProvidersSer) {
|
|
|
5903
5911
|
|
|
5904
5912
|
/**
|
|
5905
5913
|
* @title Spatial Processing Core API
|
|
5906
|
-
* @version 1.
|
|
5914
|
+
* @version 1.5.1
|
|
5907
5915
|
* @baseUrl /sp
|
|
5908
5916
|
*/
|
|
5909
5917
|
|
|
@@ -6229,7 +6237,7 @@ let Names = /*#__PURE__*/function () {
|
|
|
6229
6237
|
|
|
6230
6238
|
/**
|
|
6231
6239
|
* @title Spatial Processing Core API
|
|
6232
|
-
* @version 1.
|
|
6240
|
+
* @version 1.5.1
|
|
6233
6241
|
* @baseUrl /sp
|
|
6234
6242
|
*/
|
|
6235
6243
|
|
|
@@ -6297,7 +6305,7 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
|
|
|
6297
6305
|
|
|
6298
6306
|
/**
|
|
6299
6307
|
* @title Spatial Processing Core API
|
|
6300
|
-
* @version 1.
|
|
6308
|
+
* @version 1.5.1
|
|
6301
6309
|
* @baseUrl /sp
|
|
6302
6310
|
*/
|
|
6303
6311
|
|
|
@@ -6393,7 +6401,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6393
6401
|
|
|
6394
6402
|
/**
|
|
6395
6403
|
* @title Spatial Processing Core API
|
|
6396
|
-
* @version 1.
|
|
6404
|
+
* @version 1.5.1
|
|
6397
6405
|
* @baseUrl /sp
|
|
6398
6406
|
*/
|
|
6399
6407
|
|
|
@@ -6485,7 +6493,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
6485
6493
|
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6486
6494
|
/**
|
|
6487
6495
|
* @title Spatial Processing Core API
|
|
6488
|
-
* @version 1.
|
|
6496
|
+
* @version 1.5.1
|
|
6489
6497
|
* @baseUrl /sp
|
|
6490
6498
|
*/
|
|
6491
6499
|
|
|
@@ -6558,7 +6566,7 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
|
|
|
6558
6566
|
|
|
6559
6567
|
/**
|
|
6560
6568
|
* @title Spatial Processing Core API
|
|
6561
|
-
* @version 1.
|
|
6569
|
+
* @version 1.5.1
|
|
6562
6570
|
* @baseUrl /sp
|
|
6563
6571
|
*/
|
|
6564
6572
|
|
|
@@ -7259,47 +7267,47 @@ function isFeatureLayer(layer) {
|
|
|
7259
7267
|
|
|
7260
7268
|
/**
|
|
7261
7269
|
*
|
|
7262
|
-
|
|
7270
|
+
|
|
7263
7271
|
None
|
|
7264
|
-
|
|
7272
|
+
|
|
7265
7273
|
Array
|
|
7266
|
-
|
|
7274
|
+
|
|
7267
7275
|
Min
|
|
7268
|
-
|
|
7276
|
+
|
|
7269
7277
|
Max
|
|
7270
|
-
|
|
7278
|
+
|
|
7271
7279
|
Avg
|
|
7272
|
-
|
|
7280
|
+
|
|
7273
7281
|
Sum
|
|
7274
|
-
|
|
7282
|
+
|
|
7275
7283
|
Extent
|
|
7276
|
-
|
|
7284
|
+
|
|
7277
7285
|
H3
|
|
7278
|
-
|
|
7286
|
+
|
|
7279
7287
|
Count
|
|
7280
|
-
|
|
7288
|
+
|
|
7281
7289
|
TotalCount
|
|
7282
|
-
|
|
7290
|
+
|
|
7283
7291
|
DistinctCount
|
|
7284
|
-
|
|
7292
|
+
|
|
7285
7293
|
First
|
|
7286
|
-
|
|
7294
|
+
|
|
7287
7295
|
Last
|
|
7288
|
-
|
|
7296
|
+
|
|
7289
7297
|
Median
|
|
7290
|
-
|
|
7298
|
+
|
|
7291
7299
|
Mod
|
|
7292
|
-
|
|
7300
|
+
|
|
7293
7301
|
StdDeviation
|
|
7294
|
-
|
|
7302
|
+
|
|
7295
7303
|
SumOfProduct
|
|
7296
|
-
|
|
7304
|
+
|
|
7297
7305
|
OnlyValue
|
|
7298
|
-
|
|
7306
|
+
|
|
7299
7307
|
WeightedAvg
|
|
7300
|
-
|
|
7308
|
+
|
|
7301
7309
|
DensityIndicators
|
|
7302
|
-
|
|
7310
|
+
|
|
7303
7311
|
DividedSum
|
|
7304
7312
|
*/
|
|
7305
7313
|
var AggregationFunction;
|
|
@@ -7329,13 +7337,13 @@ var AggregationFunction;
|
|
|
7329
7337
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7330
7338
|
/**
|
|
7331
7339
|
* Attribute selector type.
|
|
7332
|
-
|
|
7340
|
+
|
|
7333
7341
|
None
|
|
7334
|
-
|
|
7342
|
+
|
|
7335
7343
|
SelectFromHandBook
|
|
7336
|
-
|
|
7344
|
+
|
|
7337
7345
|
SelectFromRange
|
|
7338
|
-
|
|
7346
|
+
|
|
7339
7347
|
ViewHandBook
|
|
7340
7348
|
*/
|
|
7341
7349
|
|
|
@@ -7350,31 +7358,31 @@ var AttributeSelectorType;
|
|
|
7350
7358
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7351
7359
|
/**
|
|
7352
7360
|
* Types of the attributes that are supported by the system.
|
|
7353
|
-
|
|
7361
|
+
|
|
7354
7362
|
Unknown
|
|
7355
|
-
|
|
7363
|
+
|
|
7356
7364
|
String
|
|
7357
|
-
|
|
7365
|
+
|
|
7358
7366
|
Int32
|
|
7359
|
-
|
|
7367
|
+
|
|
7360
7368
|
Int64
|
|
7361
|
-
|
|
7369
|
+
|
|
7362
7370
|
Double
|
|
7363
|
-
|
|
7371
|
+
|
|
7364
7372
|
DateTime
|
|
7365
|
-
|
|
7373
|
+
|
|
7366
7374
|
Boolean
|
|
7367
|
-
|
|
7375
|
+
|
|
7368
7376
|
Point
|
|
7369
|
-
|
|
7377
|
+
|
|
7370
7378
|
Polyline
|
|
7371
|
-
|
|
7379
|
+
|
|
7372
7380
|
MultiPolygon
|
|
7373
|
-
|
|
7381
|
+
|
|
7374
7382
|
Multipoint
|
|
7375
|
-
|
|
7383
|
+
|
|
7376
7384
|
H3Index
|
|
7377
|
-
|
|
7385
|
+
|
|
7378
7386
|
Json
|
|
7379
7387
|
*/
|
|
7380
7388
|
|
|
@@ -7398,15 +7406,15 @@ var AttributeType;
|
|
|
7398
7406
|
})(AttributeType || (AttributeType = {}));
|
|
7399
7407
|
/**
|
|
7400
7408
|
* Describes classification methods.
|
|
7401
|
-
|
|
7409
|
+
|
|
7402
7410
|
none
|
|
7403
|
-
|
|
7411
|
+
|
|
7404
7412
|
naturalBreaks
|
|
7405
|
-
|
|
7413
|
+
|
|
7406
7414
|
equalInterval
|
|
7407
|
-
|
|
7415
|
+
|
|
7408
7416
|
quantile
|
|
7409
|
-
|
|
7417
|
+
|
|
7410
7418
|
unique
|
|
7411
7419
|
*/
|
|
7412
7420
|
|
|
@@ -7422,11 +7430,11 @@ var ClassificationType;
|
|
|
7422
7430
|
})(ClassificationType || (ClassificationType = {}));
|
|
7423
7431
|
/**
|
|
7424
7432
|
*
|
|
7425
|
-
|
|
7433
|
+
|
|
7426
7434
|
decimal
|
|
7427
|
-
|
|
7435
|
+
|
|
7428
7436
|
dateTime
|
|
7429
|
-
|
|
7437
|
+
|
|
7430
7438
|
text
|
|
7431
7439
|
*/
|
|
7432
7440
|
|
|
@@ -7440,55 +7448,55 @@ var ClassifyAttributeType;
|
|
|
7440
7448
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7441
7449
|
/**
|
|
7442
7450
|
* Types of errors that can occur during layer initialize.
|
|
7443
|
-
|
|
7451
|
+
|
|
7444
7452
|
Unknown
|
|
7445
|
-
|
|
7453
|
+
|
|
7446
7454
|
SerializeError
|
|
7447
|
-
|
|
7455
|
+
|
|
7448
7456
|
InvalidDataService
|
|
7449
|
-
|
|
7457
|
+
|
|
7450
7458
|
InvalidConfiguration
|
|
7451
|
-
|
|
7459
|
+
|
|
7452
7460
|
InvalidDataServiceName
|
|
7453
|
-
|
|
7461
|
+
|
|
7454
7462
|
InvalidTableName
|
|
7455
|
-
|
|
7463
|
+
|
|
7456
7464
|
InvalidLayerName
|
|
7457
|
-
|
|
7465
|
+
|
|
7458
7466
|
ResourceNotFound
|
|
7459
|
-
|
|
7467
|
+
|
|
7460
7468
|
InvalidCondition
|
|
7461
|
-
|
|
7469
|
+
|
|
7462
7470
|
InvalidAttributes
|
|
7463
|
-
|
|
7471
|
+
|
|
7464
7472
|
InvalidIdAttribute
|
|
7465
|
-
|
|
7473
|
+
|
|
7466
7474
|
InvalidGeometryAttribute
|
|
7467
|
-
|
|
7475
|
+
|
|
7468
7476
|
InvalidGeometryAttributeType
|
|
7469
|
-
|
|
7477
|
+
|
|
7470
7478
|
InvalidColumnName
|
|
7471
|
-
|
|
7479
|
+
|
|
7472
7480
|
InvalidIdColumnSettings
|
|
7473
|
-
|
|
7481
|
+
|
|
7474
7482
|
ColumnNotExistsInTable
|
|
7475
|
-
|
|
7483
|
+
|
|
7476
7484
|
InvalidStyle
|
|
7477
|
-
|
|
7485
|
+
|
|
7478
7486
|
InvalidLayerType
|
|
7479
|
-
|
|
7487
|
+
|
|
7480
7488
|
ColumnLoadingError
|
|
7481
|
-
|
|
7489
|
+
|
|
7482
7490
|
InvalidAttributeFormat
|
|
7483
|
-
|
|
7491
|
+
|
|
7484
7492
|
DataSourceNotFound
|
|
7485
|
-
|
|
7493
|
+
|
|
7486
7494
|
DuplicateColumns
|
|
7487
|
-
|
|
7495
|
+
|
|
7488
7496
|
DuplicateAttributes
|
|
7489
|
-
|
|
7497
|
+
|
|
7490
7498
|
TableWithoutColumns
|
|
7491
|
-
|
|
7499
|
+
|
|
7492
7500
|
InvalidTableReferenceConfiguration
|
|
7493
7501
|
*/
|
|
7494
7502
|
|
|
@@ -7524,15 +7532,15 @@ var ConfigurationErrorEnum;
|
|
|
7524
7532
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7525
7533
|
/**
|
|
7526
7534
|
* Type of the error.
|
|
7527
|
-
|
|
7535
|
+
|
|
7528
7536
|
ResourceLimitExceeded
|
|
7529
|
-
|
|
7537
|
+
|
|
7530
7538
|
ResourceNotFound
|
|
7531
|
-
|
|
7539
|
+
|
|
7532
7540
|
InternalError
|
|
7533
|
-
|
|
7541
|
+
|
|
7534
7542
|
BadRequest
|
|
7535
|
-
|
|
7543
|
+
|
|
7536
7544
|
DuplicateContent
|
|
7537
7545
|
*/
|
|
7538
7546
|
|
|
@@ -7583,9 +7591,9 @@ var ErrorType;
|
|
|
7583
7591
|
})(ErrorType || (ErrorType = {}));
|
|
7584
7592
|
/**
|
|
7585
7593
|
* Type of the feature.
|
|
7586
|
-
|
|
7594
|
+
|
|
7587
7595
|
Unknown
|
|
7588
|
-
|
|
7596
|
+
|
|
7589
7597
|
GeometricFeature
|
|
7590
7598
|
*/
|
|
7591
7599
|
|
|
@@ -7598,11 +7606,11 @@ var FeatureType;
|
|
|
7598
7606
|
})(FeatureType || (FeatureType = {}));
|
|
7599
7607
|
/**
|
|
7600
7608
|
* Sets whether font should be styled.
|
|
7601
|
-
|
|
7609
|
+
|
|
7602
7610
|
normal
|
|
7603
|
-
|
|
7611
|
+
|
|
7604
7612
|
oblique
|
|
7605
|
-
|
|
7613
|
+
|
|
7606
7614
|
italic
|
|
7607
7615
|
*/
|
|
7608
7616
|
|
|
@@ -7616,27 +7624,27 @@ var FontStyle;
|
|
|
7616
7624
|
})(FontStyle || (FontStyle = {}));
|
|
7617
7625
|
/**
|
|
7618
7626
|
* Specifies the weight (or boldness) of the font.
|
|
7619
|
-
|
|
7627
|
+
|
|
7620
7628
|
Thin
|
|
7621
|
-
|
|
7629
|
+
|
|
7622
7630
|
ExtraLight
|
|
7623
|
-
|
|
7631
|
+
|
|
7624
7632
|
Light
|
|
7625
|
-
|
|
7633
|
+
|
|
7626
7634
|
SemiLight
|
|
7627
|
-
|
|
7635
|
+
|
|
7628
7636
|
Normal
|
|
7629
|
-
|
|
7637
|
+
|
|
7630
7638
|
Medium
|
|
7631
|
-
|
|
7639
|
+
|
|
7632
7640
|
DemiBold
|
|
7633
|
-
|
|
7641
|
+
|
|
7634
7642
|
Bold
|
|
7635
|
-
|
|
7643
|
+
|
|
7636
7644
|
ExtraBold
|
|
7637
|
-
|
|
7645
|
+
|
|
7638
7646
|
Black
|
|
7639
|
-
|
|
7647
|
+
|
|
7640
7648
|
ExtraBlack
|
|
7641
7649
|
*/
|
|
7642
7650
|
|
|
@@ -7658,17 +7666,17 @@ var FontWeight;
|
|
|
7658
7666
|
})(FontWeight || (FontWeight = {}));
|
|
7659
7667
|
/**
|
|
7660
7668
|
*
|
|
7661
|
-
|
|
7669
|
+
|
|
7662
7670
|
unknown
|
|
7663
|
-
|
|
7671
|
+
|
|
7664
7672
|
point
|
|
7665
|
-
|
|
7673
|
+
|
|
7666
7674
|
polyline
|
|
7667
|
-
|
|
7675
|
+
|
|
7668
7676
|
multipolygon
|
|
7669
|
-
|
|
7677
|
+
|
|
7670
7678
|
envelope
|
|
7671
|
-
|
|
7679
|
+
|
|
7672
7680
|
multipoint
|
|
7673
7681
|
*/
|
|
7674
7682
|
|
|
@@ -7685,13 +7693,13 @@ var GeometryType;
|
|
|
7685
7693
|
})(GeometryType || (GeometryType = {}));
|
|
7686
7694
|
/**
|
|
7687
7695
|
* Resource group.
|
|
7688
|
-
|
|
7696
|
+
|
|
7689
7697
|
my
|
|
7690
|
-
|
|
7698
|
+
|
|
7691
7699
|
role
|
|
7692
|
-
|
|
7700
|
+
|
|
7693
7701
|
public
|
|
7694
|
-
|
|
7702
|
+
|
|
7695
7703
|
all
|
|
7696
7704
|
*/
|
|
7697
7705
|
|
|
@@ -7706,13 +7714,13 @@ var Group;
|
|
|
7706
7714
|
})(Group || (Group = {}));
|
|
7707
7715
|
/**
|
|
7708
7716
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7709
|
-
|
|
7717
|
+
|
|
7710
7718
|
Flat
|
|
7711
|
-
|
|
7719
|
+
|
|
7712
7720
|
Square
|
|
7713
|
-
|
|
7721
|
+
|
|
7714
7722
|
Round
|
|
7715
|
-
|
|
7723
|
+
|
|
7716
7724
|
Triangle
|
|
7717
7725
|
*/
|
|
7718
7726
|
|
|
@@ -7727,29 +7735,29 @@ var LineCapStyle;
|
|
|
7727
7735
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
7728
7736
|
/**
|
|
7729
7737
|
* Type of the line ending.
|
|
7730
|
-
|
|
7738
|
+
|
|
7731
7739
|
none
|
|
7732
|
-
|
|
7740
|
+
|
|
7733
7741
|
arrow
|
|
7734
|
-
|
|
7742
|
+
|
|
7735
7743
|
filledArrow
|
|
7736
|
-
|
|
7744
|
+
|
|
7737
7745
|
square
|
|
7738
|
-
|
|
7746
|
+
|
|
7739
7747
|
filledSquare
|
|
7740
|
-
|
|
7748
|
+
|
|
7741
7749
|
circle
|
|
7742
|
-
|
|
7750
|
+
|
|
7743
7751
|
filledCircle
|
|
7744
|
-
|
|
7752
|
+
|
|
7745
7753
|
diamond
|
|
7746
|
-
|
|
7754
|
+
|
|
7747
7755
|
filledDiamond
|
|
7748
|
-
|
|
7756
|
+
|
|
7749
7757
|
roundSquare
|
|
7750
|
-
|
|
7758
|
+
|
|
7751
7759
|
filledRoundSquare
|
|
7752
|
-
|
|
7760
|
+
|
|
7753
7761
|
svg
|
|
7754
7762
|
*/
|
|
7755
7763
|
|
|
@@ -7772,11 +7780,11 @@ var LineEndingType;
|
|
|
7772
7780
|
})(LineEndingType || (LineEndingType = {}));
|
|
7773
7781
|
/**
|
|
7774
7782
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7775
|
-
|
|
7783
|
+
|
|
7776
7784
|
Miter
|
|
7777
|
-
|
|
7785
|
+
|
|
7778
7786
|
Bevel
|
|
7779
|
-
|
|
7787
|
+
|
|
7780
7788
|
Round
|
|
7781
7789
|
*/
|
|
7782
7790
|
|
|
@@ -7790,15 +7798,15 @@ var LineJoinType;
|
|
|
7790
7798
|
})(LineJoinType || (LineJoinType = {}));
|
|
7791
7799
|
/**
|
|
7792
7800
|
*
|
|
7793
|
-
|
|
7801
|
+
|
|
7794
7802
|
Unknown
|
|
7795
|
-
|
|
7803
|
+
|
|
7796
7804
|
union
|
|
7797
|
-
|
|
7805
|
+
|
|
7798
7806
|
intersection
|
|
7799
|
-
|
|
7807
|
+
|
|
7800
7808
|
subtraction
|
|
7801
|
-
|
|
7809
|
+
|
|
7802
7810
|
symDifference
|
|
7803
7811
|
*/
|
|
7804
7812
|
|
|
@@ -7814,9 +7822,9 @@ var Operation;
|
|
|
7814
7822
|
})(Operation || (Operation = {}));
|
|
7815
7823
|
/**
|
|
7816
7824
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
7817
|
-
|
|
7825
|
+
|
|
7818
7826
|
xyz
|
|
7819
|
-
|
|
7827
|
+
|
|
7820
7828
|
tms
|
|
7821
7829
|
*/
|
|
7822
7830
|
|
|
@@ -7829,19 +7837,19 @@ var PbfSchema;
|
|
|
7829
7837
|
})(PbfSchema || (PbfSchema = {}));
|
|
7830
7838
|
/**
|
|
7831
7839
|
* User permissions for server security objects (services, projects etc.)
|
|
7832
|
-
|
|
7840
|
+
|
|
7833
7841
|
none
|
|
7834
|
-
|
|
7842
|
+
|
|
7835
7843
|
configure
|
|
7836
|
-
|
|
7844
|
+
|
|
7837
7845
|
write
|
|
7838
|
-
|
|
7846
|
+
|
|
7839
7847
|
read
|
|
7840
|
-
|
|
7848
|
+
|
|
7841
7849
|
read,configure
|
|
7842
|
-
|
|
7850
|
+
|
|
7843
7851
|
read,write
|
|
7844
|
-
|
|
7852
|
+
|
|
7845
7853
|
read,write,configure
|
|
7846
7854
|
*/
|
|
7847
7855
|
|
|
@@ -7859,19 +7867,19 @@ var Permissions;
|
|
|
7859
7867
|
})(Permissions || (Permissions = {}));
|
|
7860
7868
|
/**
|
|
7861
7869
|
* Type of the authorization policy.
|
|
7862
|
-
|
|
7870
|
+
|
|
7863
7871
|
Unknown
|
|
7864
|
-
|
|
7872
|
+
|
|
7865
7873
|
CreateTable
|
|
7866
|
-
|
|
7874
|
+
|
|
7867
7875
|
CreateLayer
|
|
7868
|
-
|
|
7876
|
+
|
|
7869
7877
|
CreateProject
|
|
7870
|
-
|
|
7878
|
+
|
|
7871
7879
|
MaxFeaturesInOneTable
|
|
7872
|
-
|
|
7880
|
+
|
|
7873
7881
|
MaxObjectsToExport
|
|
7874
|
-
|
|
7882
|
+
|
|
7875
7883
|
MaxUploadContentSize
|
|
7876
7884
|
*/
|
|
7877
7885
|
|
|
@@ -7889,17 +7897,17 @@ var PolicyType;
|
|
|
7889
7897
|
})(PolicyType || (PolicyType = {}));
|
|
7890
7898
|
/**
|
|
7891
7899
|
* Types of table reference.
|
|
7892
|
-
|
|
7900
|
+
|
|
7893
7901
|
OneToMany
|
|
7894
|
-
|
|
7902
|
+
|
|
7895
7903
|
OneToOne
|
|
7896
|
-
|
|
7904
|
+
|
|
7897
7905
|
Intersect
|
|
7898
|
-
|
|
7906
|
+
|
|
7899
7907
|
RightJoin
|
|
7900
|
-
|
|
7908
|
+
|
|
7901
7909
|
FullJoin
|
|
7902
|
-
|
|
7910
|
+
|
|
7903
7911
|
CrossJoin
|
|
7904
7912
|
*/
|
|
7905
7913
|
|
|
@@ -7916,19 +7924,19 @@ var ReferenceJoinType;
|
|
|
7916
7924
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
7917
7925
|
/**
|
|
7918
7926
|
* The `ResourceType` represents resource manager supports types.
|
|
7919
|
-
|
|
7927
|
+
|
|
7920
7928
|
Unknown
|
|
7921
|
-
|
|
7929
|
+
|
|
7922
7930
|
table
|
|
7923
|
-
|
|
7931
|
+
|
|
7924
7932
|
layer
|
|
7925
|
-
|
|
7933
|
+
|
|
7926
7934
|
project
|
|
7927
|
-
|
|
7935
|
+
|
|
7928
7936
|
file
|
|
7929
|
-
|
|
7937
|
+
|
|
7930
7938
|
feature
|
|
7931
|
-
|
|
7939
|
+
|
|
7932
7940
|
tag
|
|
7933
7941
|
*/
|
|
7934
7942
|
|
|
@@ -7954,21 +7962,21 @@ var ResourceTypeLink;
|
|
|
7954
7962
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
7955
7963
|
/**
|
|
7956
7964
|
* Status of the server task.
|
|
7957
|
-
|
|
7965
|
+
|
|
7958
7966
|
None
|
|
7959
|
-
|
|
7967
|
+
|
|
7960
7968
|
Scheduled
|
|
7961
|
-
|
|
7969
|
+
|
|
7962
7970
|
Planning
|
|
7963
|
-
|
|
7971
|
+
|
|
7964
7972
|
Executing
|
|
7965
|
-
|
|
7973
|
+
|
|
7966
7974
|
Completed
|
|
7967
|
-
|
|
7975
|
+
|
|
7968
7976
|
Failed
|
|
7969
|
-
|
|
7977
|
+
|
|
7970
7978
|
Canceled
|
|
7971
|
-
|
|
7979
|
+
|
|
7972
7980
|
Timeout
|
|
7973
7981
|
*/
|
|
7974
7982
|
|
|
@@ -7987,11 +7995,11 @@ var ServerTaskStatus;
|
|
|
7987
7995
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
7988
7996
|
/**
|
|
7989
7997
|
* Simplify type.
|
|
7990
|
-
|
|
7998
|
+
|
|
7991
7999
|
Basic
|
|
7992
|
-
|
|
8000
|
+
|
|
7993
8001
|
PreserveTopology
|
|
7994
|
-
|
|
8002
|
+
|
|
7995
8003
|
VW
|
|
7996
8004
|
*/
|
|
7997
8005
|
|
|
@@ -8005,13 +8013,13 @@ var SimplifyType;
|
|
|
8005
8013
|
})(SimplifyType || (SimplifyType = {}));
|
|
8006
8014
|
/**
|
|
8007
8015
|
* The `StringSubType` provides information about string attribute subtype.
|
|
8008
|
-
|
|
8016
|
+
|
|
8009
8017
|
None
|
|
8010
|
-
|
|
8018
|
+
|
|
8011
8019
|
Image
|
|
8012
|
-
|
|
8020
|
+
|
|
8013
8021
|
PkkCode
|
|
8014
|
-
|
|
8022
|
+
|
|
8015
8023
|
Attachments
|
|
8016
8024
|
*/
|
|
8017
8025
|
|
|
@@ -8026,9 +8034,9 @@ var StringSubType;
|
|
|
8026
8034
|
})(StringSubType || (StringSubType = {}));
|
|
8027
8035
|
/**
|
|
8028
8036
|
* Task owner group.
|
|
8029
|
-
|
|
8037
|
+
|
|
8030
8038
|
my
|
|
8031
|
-
|
|
8039
|
+
|
|
8032
8040
|
all
|
|
8033
8041
|
*/
|
|
8034
8042
|
|
|
@@ -8041,13 +8049,13 @@ var TaskGroup;
|
|
|
8041
8049
|
})(TaskGroup || (TaskGroup = {}));
|
|
8042
8050
|
/**
|
|
8043
8051
|
* Sets the horizontal alignment of text.
|
|
8044
|
-
|
|
8052
|
+
|
|
8045
8053
|
right
|
|
8046
|
-
|
|
8054
|
+
|
|
8047
8055
|
left
|
|
8048
|
-
|
|
8056
|
+
|
|
8049
8057
|
center
|
|
8050
|
-
|
|
8058
|
+
|
|
8051
8059
|
justified
|
|
8052
8060
|
*/
|
|
8053
8061
|
|
|
@@ -8062,11 +8070,11 @@ var TextAlignment;
|
|
|
8062
8070
|
})(TextAlignment || (TextAlignment = {}));
|
|
8063
8071
|
/**
|
|
8064
8072
|
* Sets the vertical alignment of text.
|
|
8065
|
-
|
|
8073
|
+
|
|
8066
8074
|
top
|
|
8067
|
-
|
|
8075
|
+
|
|
8068
8076
|
bottom
|
|
8069
|
-
|
|
8077
|
+
|
|
8070
8078
|
middle
|
|
8071
8079
|
*/
|
|
8072
8080
|
|