@evergis/api 3.0.165 → 3.0.167
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/Api.d.ts +2 -0
- package/dist/__generated__/LayersService.d.ts +13 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/SpatialReferencesService.d.ts +41 -0
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +231 -186
- package/dist/api.cjs.development.js +103 -21
- 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 +282 -200
- package/dist/api.esm.js.map +1 -1
- package/dist/layers/EvergisDynamicLayer.d.ts +5 -2
- package/package.json +4 -4
package/dist/api.esm.js
CHANGED
|
@@ -7,6 +7,7 @@ import { customAlphabet } from 'nanoid';
|
|
|
7
7
|
import { DomPainter } from '@evergis/sgis/es/painters/DomPainter/DomPainter';
|
|
8
8
|
import { Map } from '@evergis/sgis/es/Map';
|
|
9
9
|
import { TileLayer } from '@evergis/sgis/es/layers/TileLayer';
|
|
10
|
+
import { webMercator } from '@evergis/sgis/es/Crs';
|
|
10
11
|
import { DynamicLayer } from '@evergis/sgis/es/layers/DynamicLayer';
|
|
11
12
|
import { FeatureLayer } from '@evergis/sgis';
|
|
12
13
|
|
|
@@ -29,9 +30,6 @@ function _defineProperties(target, props) {
|
|
|
29
30
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
30
31
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
31
32
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
32
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
33
|
-
writable: false
|
|
34
|
-
});
|
|
35
33
|
return Constructor;
|
|
36
34
|
}
|
|
37
35
|
|
|
@@ -65,9 +63,6 @@ function _inherits(subClass, superClass) {
|
|
|
65
63
|
configurable: true
|
|
66
64
|
}
|
|
67
65
|
});
|
|
68
|
-
Object.defineProperty(subClass, "prototype", {
|
|
69
|
-
writable: false
|
|
70
|
-
});
|
|
71
66
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
72
67
|
}
|
|
73
68
|
|
|
@@ -126,8 +121,6 @@ function _assertThisInitialized(self) {
|
|
|
126
121
|
function _possibleConstructorReturn(self, call) {
|
|
127
122
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
128
123
|
return call;
|
|
129
|
-
} else if (call !== void 0) {
|
|
130
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
131
124
|
}
|
|
132
125
|
|
|
133
126
|
return _assertThisInitialized(self);
|
|
@@ -161,7 +154,7 @@ function _superPropBase(object, property) {
|
|
|
161
154
|
return object;
|
|
162
155
|
}
|
|
163
156
|
|
|
164
|
-
function _get() {
|
|
157
|
+
function _get(target, property, receiver) {
|
|
165
158
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
166
159
|
_get = Reflect.get;
|
|
167
160
|
} else {
|
|
@@ -172,14 +165,14 @@ function _get() {
|
|
|
172
165
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
173
166
|
|
|
174
167
|
if (desc.get) {
|
|
175
|
-
return desc.get.call(
|
|
168
|
+
return desc.get.call(receiver);
|
|
176
169
|
}
|
|
177
170
|
|
|
178
171
|
return desc.value;
|
|
179
172
|
};
|
|
180
173
|
}
|
|
181
174
|
|
|
182
|
-
return _get
|
|
175
|
+
return _get(target, property, receiver || target);
|
|
183
176
|
}
|
|
184
177
|
|
|
185
178
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -312,6 +305,76 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
|
|
|
312
305
|
this.http = http;
|
|
313
306
|
});
|
|
314
307
|
|
|
308
|
+
/**
|
|
309
|
+
* @title Spatial Processing Core API
|
|
310
|
+
* @version 1.0.0
|
|
311
|
+
* @baseUrl /sp
|
|
312
|
+
*/
|
|
313
|
+
|
|
314
|
+
let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
315
|
+
_inherits(SpatialReferencesService, _Service);
|
|
316
|
+
|
|
317
|
+
var _super = /*#__PURE__*/_createSuper(SpatialReferencesService);
|
|
318
|
+
|
|
319
|
+
function SpatialReferencesService() {
|
|
320
|
+
_classCallCheck(this, SpatialReferencesService);
|
|
321
|
+
|
|
322
|
+
return _super.apply(this, arguments);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
_createClass(SpatialReferencesService, [{
|
|
326
|
+
key: "getAvailiableCs",
|
|
327
|
+
value:
|
|
328
|
+
/**
|
|
329
|
+
* No description
|
|
330
|
+
*
|
|
331
|
+
* @tags SpatialReferences
|
|
332
|
+
* @name GetAvailiableCs
|
|
333
|
+
* @operationId SpatialReferencesController_GetAvailiableCsAsync
|
|
334
|
+
* @summary Returns list of available spatial references.
|
|
335
|
+
* @request GET:/srs/list
|
|
336
|
+
* @response `200` Success
|
|
337
|
+
*/
|
|
338
|
+
function getAvailiableCs() {
|
|
339
|
+
return this.http.get("/srs/list").json();
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* No description
|
|
343
|
+
*
|
|
344
|
+
* @tags SpatialReferences
|
|
345
|
+
* @name GetProj4Representation
|
|
346
|
+
* @operationId SpatialReferencesController_GetProj4RepresentationAsync
|
|
347
|
+
* @summary Returns a WKT representation of spatial reference.
|
|
348
|
+
* @request GET:/srs/{name}/proj4
|
|
349
|
+
* @response `200` Success
|
|
350
|
+
*/
|
|
351
|
+
|
|
352
|
+
}, {
|
|
353
|
+
key: "getProj4Representation",
|
|
354
|
+
value: function getProj4Representation(name) {
|
|
355
|
+
return this.http.get("/srs/" + name + "/proj4").text();
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* No description
|
|
359
|
+
*
|
|
360
|
+
* @tags SpatialReferences
|
|
361
|
+
* @name GetWktRepresentation
|
|
362
|
+
* @operationId SpatialReferencesController_GetWktRepresentationAsync
|
|
363
|
+
* @summary Returns a WKT representation of spatial reference.
|
|
364
|
+
* @request GET:/srs/{name}/wkt
|
|
365
|
+
* @response `200` Success
|
|
366
|
+
*/
|
|
367
|
+
|
|
368
|
+
}, {
|
|
369
|
+
key: "getWktRepresentation",
|
|
370
|
+
value: function getWktRepresentation(name) {
|
|
371
|
+
return this.http.get("/srs/" + name + "/wkt").text();
|
|
372
|
+
}
|
|
373
|
+
}]);
|
|
374
|
+
|
|
375
|
+
return SpatialReferencesService;
|
|
376
|
+
}(Service);
|
|
377
|
+
|
|
315
378
|
const _excluded = ["taskId", "layerName"];
|
|
316
379
|
/**
|
|
317
380
|
* @title Spatial Processing Core API
|
|
@@ -1295,8 +1358,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
1295
1358
|
|| event.code === 4002
|
|
1296
1359
|
/* InvalidSession */
|
|
1297
1360
|
) {
|
|
1298
|
-
|
|
1299
|
-
|
|
1361
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
1362
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
1300
1363
|
_this.connectStatus = ConnectionStatus.Break;
|
|
1301
1364
|
_this.reconnectTries++;
|
|
1302
1365
|
|
|
@@ -1863,7 +1926,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
1863
1926
|
const taskProgress = await this.getTaskProgress(id);
|
|
1864
1927
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
1865
1928
|
|
|
1866
|
-
const taskResultCallback = async _ref => {
|
|
1929
|
+
const taskResultCallback = async (_ref) => {
|
|
1867
1930
|
let {
|
|
1868
1931
|
data
|
|
1869
1932
|
} = _ref;
|
|
@@ -2402,6 +2465,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2402
2465
|
*
|
|
2403
2466
|
* @tags Layers
|
|
2404
2467
|
* @name GetFeatures
|
|
2468
|
+
* @operationId LayersController_GetFeaturesQuery
|
|
2469
|
+
* @summary Returns list of the layer features.
|
|
2470
|
+
* @request POST:/layers/{name}/features/query
|
|
2471
|
+
* @response `200` Success
|
|
2472
|
+
*/
|
|
2473
|
+
|
|
2474
|
+
}, {
|
|
2475
|
+
key: "getFeaturesQuery",
|
|
2476
|
+
value: function getFeaturesQuery(name, data) {
|
|
2477
|
+
return this.http.post("/layers/" + name + "/features/query", data).json();
|
|
2478
|
+
}
|
|
2479
|
+
/**
|
|
2480
|
+
* No description
|
|
2481
|
+
*
|
|
2482
|
+
* @tags Layers
|
|
2483
|
+
* @name GetFeatures1
|
|
2405
2484
|
* @operationId LayersController_GetFeatures
|
|
2406
2485
|
* @summary Returns list of the layer features.
|
|
2407
2486
|
* @request GET:/layers/{name}/features
|
|
@@ -4181,12 +4260,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
4181
4260
|
}, {
|
|
4182
4261
|
key: "getDependentNames",
|
|
4183
4262
|
value: function getDependentNames(deps, depType) {
|
|
4184
|
-
return deps.filter(_ref => {
|
|
4263
|
+
return deps.filter((_ref) => {
|
|
4185
4264
|
let {
|
|
4186
4265
|
type
|
|
4187
4266
|
} = _ref;
|
|
4188
4267
|
return type === depType;
|
|
4189
|
-
}).map(_ref2 => {
|
|
4268
|
+
}).map((_ref2) => {
|
|
4190
4269
|
let {
|
|
4191
4270
|
name
|
|
4192
4271
|
} = _ref2;
|
|
@@ -6687,6 +6766,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6687
6766
|
_this.feedback = new Feedback(_this.http);
|
|
6688
6767
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
6689
6768
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
6769
|
+
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
6690
6770
|
_this.names = new Names({
|
|
6691
6771
|
account: _this.account
|
|
6692
6772
|
});
|
|
@@ -6863,7 +6943,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
|
|
|
6863
6943
|
return EvergisTileLayer;
|
|
6864
6944
|
}(TileLayer);
|
|
6865
6945
|
|
|
6866
|
-
const _excluded$8 = ["name", "style", "condition", "dataFilterId"];
|
|
6946
|
+
const _excluded$8 = ["name", "style", "condition", "dataFilterId", "crs"];
|
|
6867
6947
|
let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
6868
6948
|
_inherits(EvergisDynamicLayer, _DynamicLayer);
|
|
6869
6949
|
|
|
@@ -6876,7 +6956,8 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
|
6876
6956
|
name,
|
|
6877
6957
|
style,
|
|
6878
6958
|
condition,
|
|
6879
|
-
dataFilterId
|
|
6959
|
+
dataFilterId,
|
|
6960
|
+
crs = webMercator
|
|
6880
6961
|
} = _ref,
|
|
6881
6962
|
layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
6882
6963
|
|
|
@@ -6888,6 +6969,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
|
6888
6969
|
_this.styleId = style;
|
|
6889
6970
|
_this.conditionQuery = condition;
|
|
6890
6971
|
_this.filterId = dataFilterId;
|
|
6972
|
+
_this.crs = crs;
|
|
6891
6973
|
|
|
6892
6974
|
_this.subscribeRedraw();
|
|
6893
6975
|
|
|
@@ -6929,9 +7011,9 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
|
6929
7011
|
}
|
|
6930
7012
|
}, {
|
|
6931
7013
|
key: "getUrl",
|
|
6932
|
-
value: function getUrl(bbox,
|
|
6933
|
-
let imgWidth =
|
|
6934
|
-
let imgHeight =
|
|
7014
|
+
value: function getUrl(bbox, painter) {
|
|
7015
|
+
let imgWidth = painter.width;
|
|
7016
|
+
let imgHeight = painter.height;
|
|
6935
7017
|
return this.api.layers.getLayerImage({
|
|
6936
7018
|
name: this.name,
|
|
6937
7019
|
extent: bbox.coordinates,
|
|
@@ -7169,47 +7251,47 @@ function isFeatureLayer(layer) {
|
|
|
7169
7251
|
|
|
7170
7252
|
/**
|
|
7171
7253
|
*
|
|
7172
|
-
|
|
7254
|
+
|
|
7173
7255
|
None
|
|
7174
|
-
|
|
7256
|
+
|
|
7175
7257
|
Array
|
|
7176
|
-
|
|
7258
|
+
|
|
7177
7259
|
Min
|
|
7178
|
-
|
|
7260
|
+
|
|
7179
7261
|
Max
|
|
7180
|
-
|
|
7262
|
+
|
|
7181
7263
|
Avg
|
|
7182
|
-
|
|
7264
|
+
|
|
7183
7265
|
Sum
|
|
7184
|
-
|
|
7266
|
+
|
|
7185
7267
|
Extent
|
|
7186
|
-
|
|
7268
|
+
|
|
7187
7269
|
H3
|
|
7188
|
-
|
|
7270
|
+
|
|
7189
7271
|
Count
|
|
7190
|
-
|
|
7272
|
+
|
|
7191
7273
|
TotalCount
|
|
7192
|
-
|
|
7274
|
+
|
|
7193
7275
|
DistinctCount
|
|
7194
|
-
|
|
7276
|
+
|
|
7195
7277
|
First
|
|
7196
|
-
|
|
7278
|
+
|
|
7197
7279
|
Last
|
|
7198
|
-
|
|
7280
|
+
|
|
7199
7281
|
Median
|
|
7200
|
-
|
|
7282
|
+
|
|
7201
7283
|
Mod
|
|
7202
|
-
|
|
7284
|
+
|
|
7203
7285
|
StdDeviation
|
|
7204
|
-
|
|
7286
|
+
|
|
7205
7287
|
SumOfProduct
|
|
7206
|
-
|
|
7288
|
+
|
|
7207
7289
|
OnlyValue
|
|
7208
|
-
|
|
7290
|
+
|
|
7209
7291
|
WeightedAvg
|
|
7210
|
-
|
|
7292
|
+
|
|
7211
7293
|
DensityIndicators
|
|
7212
|
-
|
|
7294
|
+
|
|
7213
7295
|
DividedSum
|
|
7214
7296
|
*/
|
|
7215
7297
|
var AggregationFunction;
|
|
@@ -7239,13 +7321,13 @@ var AggregationFunction;
|
|
|
7239
7321
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7240
7322
|
/**
|
|
7241
7323
|
* Attribute selector type.
|
|
7242
|
-
|
|
7324
|
+
|
|
7243
7325
|
None
|
|
7244
|
-
|
|
7326
|
+
|
|
7245
7327
|
SelectFromHandBook
|
|
7246
|
-
|
|
7328
|
+
|
|
7247
7329
|
SelectFromRange
|
|
7248
|
-
|
|
7330
|
+
|
|
7249
7331
|
ViewHandBook
|
|
7250
7332
|
*/
|
|
7251
7333
|
|
|
@@ -7260,31 +7342,31 @@ var AttributeSelectorType;
|
|
|
7260
7342
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7261
7343
|
/**
|
|
7262
7344
|
* Types of the attributes that are supported by the system.
|
|
7263
|
-
|
|
7345
|
+
|
|
7264
7346
|
Unknown
|
|
7265
|
-
|
|
7347
|
+
|
|
7266
7348
|
String
|
|
7267
|
-
|
|
7349
|
+
|
|
7268
7350
|
Int32
|
|
7269
|
-
|
|
7351
|
+
|
|
7270
7352
|
Int64
|
|
7271
|
-
|
|
7353
|
+
|
|
7272
7354
|
Double
|
|
7273
|
-
|
|
7355
|
+
|
|
7274
7356
|
DateTime
|
|
7275
|
-
|
|
7357
|
+
|
|
7276
7358
|
Boolean
|
|
7277
|
-
|
|
7359
|
+
|
|
7278
7360
|
Point
|
|
7279
|
-
|
|
7361
|
+
|
|
7280
7362
|
Polyline
|
|
7281
|
-
|
|
7363
|
+
|
|
7282
7364
|
MultiPolygon
|
|
7283
|
-
|
|
7365
|
+
|
|
7284
7366
|
Multipoint
|
|
7285
|
-
|
|
7367
|
+
|
|
7286
7368
|
H3Index
|
|
7287
|
-
|
|
7369
|
+
|
|
7288
7370
|
Json
|
|
7289
7371
|
*/
|
|
7290
7372
|
|
|
@@ -7308,15 +7390,15 @@ var AttributeType;
|
|
|
7308
7390
|
})(AttributeType || (AttributeType = {}));
|
|
7309
7391
|
/**
|
|
7310
7392
|
* Describes classification methods.
|
|
7311
|
-
|
|
7393
|
+
|
|
7312
7394
|
none
|
|
7313
|
-
|
|
7395
|
+
|
|
7314
7396
|
naturalBreaks
|
|
7315
|
-
|
|
7397
|
+
|
|
7316
7398
|
equalInterval
|
|
7317
|
-
|
|
7399
|
+
|
|
7318
7400
|
quantile
|
|
7319
|
-
|
|
7401
|
+
|
|
7320
7402
|
unique
|
|
7321
7403
|
*/
|
|
7322
7404
|
|
|
@@ -7332,11 +7414,11 @@ var ClassificationType;
|
|
|
7332
7414
|
})(ClassificationType || (ClassificationType = {}));
|
|
7333
7415
|
/**
|
|
7334
7416
|
*
|
|
7335
|
-
|
|
7417
|
+
|
|
7336
7418
|
decimal
|
|
7337
|
-
|
|
7419
|
+
|
|
7338
7420
|
dateTime
|
|
7339
|
-
|
|
7421
|
+
|
|
7340
7422
|
text
|
|
7341
7423
|
*/
|
|
7342
7424
|
|
|
@@ -7350,55 +7432,55 @@ var ClassifyAttributeType;
|
|
|
7350
7432
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7351
7433
|
/**
|
|
7352
7434
|
* Types of errors that can occur during layer initialize.
|
|
7353
|
-
|
|
7435
|
+
|
|
7354
7436
|
Unknown
|
|
7355
|
-
|
|
7437
|
+
|
|
7356
7438
|
SerializeError
|
|
7357
|
-
|
|
7439
|
+
|
|
7358
7440
|
InvalidDataService
|
|
7359
|
-
|
|
7441
|
+
|
|
7360
7442
|
InvalidConfiguration
|
|
7361
|
-
|
|
7443
|
+
|
|
7362
7444
|
InvalidDataServiceName
|
|
7363
|
-
|
|
7445
|
+
|
|
7364
7446
|
InvalidTableName
|
|
7365
|
-
|
|
7447
|
+
|
|
7366
7448
|
InvalidLayerName
|
|
7367
|
-
|
|
7449
|
+
|
|
7368
7450
|
ResourceNotFound
|
|
7369
|
-
|
|
7451
|
+
|
|
7370
7452
|
InvalidCondition
|
|
7371
|
-
|
|
7453
|
+
|
|
7372
7454
|
InvalidAttributes
|
|
7373
|
-
|
|
7455
|
+
|
|
7374
7456
|
InvalidIdAttribute
|
|
7375
|
-
|
|
7457
|
+
|
|
7376
7458
|
InvalidGeometryAttribute
|
|
7377
|
-
|
|
7459
|
+
|
|
7378
7460
|
InvalidGeometryAttributeType
|
|
7379
|
-
|
|
7461
|
+
|
|
7380
7462
|
InvalidColumnName
|
|
7381
|
-
|
|
7463
|
+
|
|
7382
7464
|
InvalidIdColumnSettings
|
|
7383
|
-
|
|
7465
|
+
|
|
7384
7466
|
ColumnNotExistsInTable
|
|
7385
|
-
|
|
7467
|
+
|
|
7386
7468
|
InvalidStyle
|
|
7387
|
-
|
|
7469
|
+
|
|
7388
7470
|
InvalidLayerType
|
|
7389
|
-
|
|
7471
|
+
|
|
7390
7472
|
ColumnLoadingError
|
|
7391
|
-
|
|
7473
|
+
|
|
7392
7474
|
InvalidAttributeFormat
|
|
7393
|
-
|
|
7475
|
+
|
|
7394
7476
|
DataSourceNotFound
|
|
7395
|
-
|
|
7477
|
+
|
|
7396
7478
|
DuplicateColumns
|
|
7397
|
-
|
|
7479
|
+
|
|
7398
7480
|
DuplicateAttributes
|
|
7399
|
-
|
|
7481
|
+
|
|
7400
7482
|
TableWithoutColumns
|
|
7401
|
-
|
|
7483
|
+
|
|
7402
7484
|
InvalidTableReferenceConfiguration
|
|
7403
7485
|
*/
|
|
7404
7486
|
|
|
@@ -7434,15 +7516,15 @@ var ConfigurationErrorEnum;
|
|
|
7434
7516
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7435
7517
|
/**
|
|
7436
7518
|
* Type of the error.
|
|
7437
|
-
|
|
7519
|
+
|
|
7438
7520
|
ResourceLimitExceeded
|
|
7439
|
-
|
|
7521
|
+
|
|
7440
7522
|
ResourceNotFound
|
|
7441
|
-
|
|
7523
|
+
|
|
7442
7524
|
InternalError
|
|
7443
|
-
|
|
7525
|
+
|
|
7444
7526
|
BadRequest
|
|
7445
|
-
|
|
7527
|
+
|
|
7446
7528
|
DuplicateContent
|
|
7447
7529
|
*/
|
|
7448
7530
|
|
|
@@ -7493,9 +7575,9 @@ var ErrorType;
|
|
|
7493
7575
|
})(ErrorType || (ErrorType = {}));
|
|
7494
7576
|
/**
|
|
7495
7577
|
* Type of the feature.
|
|
7496
|
-
|
|
7578
|
+
|
|
7497
7579
|
Unknown
|
|
7498
|
-
|
|
7580
|
+
|
|
7499
7581
|
GeometricFeature
|
|
7500
7582
|
*/
|
|
7501
7583
|
|
|
@@ -7508,11 +7590,11 @@ var FeatureType;
|
|
|
7508
7590
|
})(FeatureType || (FeatureType = {}));
|
|
7509
7591
|
/**
|
|
7510
7592
|
* Sets whether font should be styled.
|
|
7511
|
-
|
|
7593
|
+
|
|
7512
7594
|
normal
|
|
7513
|
-
|
|
7595
|
+
|
|
7514
7596
|
oblique
|
|
7515
|
-
|
|
7597
|
+
|
|
7516
7598
|
italic
|
|
7517
7599
|
*/
|
|
7518
7600
|
|
|
@@ -7526,27 +7608,27 @@ var FontStyle;
|
|
|
7526
7608
|
})(FontStyle || (FontStyle = {}));
|
|
7527
7609
|
/**
|
|
7528
7610
|
* Specifies the weight (or boldness) of the font.
|
|
7529
|
-
|
|
7611
|
+
|
|
7530
7612
|
Thin
|
|
7531
|
-
|
|
7613
|
+
|
|
7532
7614
|
ExtraLight
|
|
7533
|
-
|
|
7615
|
+
|
|
7534
7616
|
Light
|
|
7535
|
-
|
|
7617
|
+
|
|
7536
7618
|
SemiLight
|
|
7537
|
-
|
|
7619
|
+
|
|
7538
7620
|
Normal
|
|
7539
|
-
|
|
7621
|
+
|
|
7540
7622
|
Medium
|
|
7541
|
-
|
|
7623
|
+
|
|
7542
7624
|
DemiBold
|
|
7543
|
-
|
|
7625
|
+
|
|
7544
7626
|
Bold
|
|
7545
|
-
|
|
7627
|
+
|
|
7546
7628
|
ExtraBold
|
|
7547
|
-
|
|
7629
|
+
|
|
7548
7630
|
Black
|
|
7549
|
-
|
|
7631
|
+
|
|
7550
7632
|
ExtraBlack
|
|
7551
7633
|
*/
|
|
7552
7634
|
|
|
@@ -7568,17 +7650,17 @@ var FontWeight;
|
|
|
7568
7650
|
})(FontWeight || (FontWeight = {}));
|
|
7569
7651
|
/**
|
|
7570
7652
|
*
|
|
7571
|
-
|
|
7653
|
+
|
|
7572
7654
|
unknown
|
|
7573
|
-
|
|
7655
|
+
|
|
7574
7656
|
point
|
|
7575
|
-
|
|
7657
|
+
|
|
7576
7658
|
polyline
|
|
7577
|
-
|
|
7659
|
+
|
|
7578
7660
|
multipolygon
|
|
7579
|
-
|
|
7661
|
+
|
|
7580
7662
|
envelope
|
|
7581
|
-
|
|
7663
|
+
|
|
7582
7664
|
multipoint
|
|
7583
7665
|
*/
|
|
7584
7666
|
|
|
@@ -7595,13 +7677,13 @@ var GeometryType;
|
|
|
7595
7677
|
})(GeometryType || (GeometryType = {}));
|
|
7596
7678
|
/**
|
|
7597
7679
|
* Resource group.
|
|
7598
|
-
|
|
7680
|
+
|
|
7599
7681
|
my
|
|
7600
|
-
|
|
7682
|
+
|
|
7601
7683
|
role
|
|
7602
|
-
|
|
7684
|
+
|
|
7603
7685
|
public
|
|
7604
|
-
|
|
7686
|
+
|
|
7605
7687
|
all
|
|
7606
7688
|
*/
|
|
7607
7689
|
|
|
@@ -7616,13 +7698,13 @@ var Group;
|
|
|
7616
7698
|
})(Group || (Group = {}));
|
|
7617
7699
|
/**
|
|
7618
7700
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7619
|
-
|
|
7701
|
+
|
|
7620
7702
|
Flat
|
|
7621
|
-
|
|
7703
|
+
|
|
7622
7704
|
Square
|
|
7623
|
-
|
|
7705
|
+
|
|
7624
7706
|
Round
|
|
7625
|
-
|
|
7707
|
+
|
|
7626
7708
|
Triangle
|
|
7627
7709
|
*/
|
|
7628
7710
|
|
|
@@ -7637,29 +7719,29 @@ var LineCapStyle;
|
|
|
7637
7719
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
7638
7720
|
/**
|
|
7639
7721
|
* Type of the line ending.
|
|
7640
|
-
|
|
7722
|
+
|
|
7641
7723
|
none
|
|
7642
|
-
|
|
7724
|
+
|
|
7643
7725
|
arrow
|
|
7644
|
-
|
|
7726
|
+
|
|
7645
7727
|
filledArrow
|
|
7646
|
-
|
|
7728
|
+
|
|
7647
7729
|
square
|
|
7648
|
-
|
|
7730
|
+
|
|
7649
7731
|
filledSquare
|
|
7650
|
-
|
|
7732
|
+
|
|
7651
7733
|
circle
|
|
7652
|
-
|
|
7734
|
+
|
|
7653
7735
|
filledCircle
|
|
7654
|
-
|
|
7736
|
+
|
|
7655
7737
|
diamond
|
|
7656
|
-
|
|
7738
|
+
|
|
7657
7739
|
filledDiamond
|
|
7658
|
-
|
|
7740
|
+
|
|
7659
7741
|
roundSquare
|
|
7660
|
-
|
|
7742
|
+
|
|
7661
7743
|
filledRoundSquare
|
|
7662
|
-
|
|
7744
|
+
|
|
7663
7745
|
svg
|
|
7664
7746
|
*/
|
|
7665
7747
|
|
|
@@ -7682,11 +7764,11 @@ var LineEndingType;
|
|
|
7682
7764
|
})(LineEndingType || (LineEndingType = {}));
|
|
7683
7765
|
/**
|
|
7684
7766
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7685
|
-
|
|
7767
|
+
|
|
7686
7768
|
Miter
|
|
7687
|
-
|
|
7769
|
+
|
|
7688
7770
|
Bevel
|
|
7689
|
-
|
|
7771
|
+
|
|
7690
7772
|
Round
|
|
7691
7773
|
*/
|
|
7692
7774
|
|
|
@@ -7700,15 +7782,15 @@ var LineJoinType;
|
|
|
7700
7782
|
})(LineJoinType || (LineJoinType = {}));
|
|
7701
7783
|
/**
|
|
7702
7784
|
*
|
|
7703
|
-
|
|
7785
|
+
|
|
7704
7786
|
Unknown
|
|
7705
|
-
|
|
7787
|
+
|
|
7706
7788
|
union
|
|
7707
|
-
|
|
7789
|
+
|
|
7708
7790
|
intersection
|
|
7709
|
-
|
|
7791
|
+
|
|
7710
7792
|
subtraction
|
|
7711
|
-
|
|
7793
|
+
|
|
7712
7794
|
symDifference
|
|
7713
7795
|
*/
|
|
7714
7796
|
|
|
@@ -7724,9 +7806,9 @@ var Operation;
|
|
|
7724
7806
|
})(Operation || (Operation = {}));
|
|
7725
7807
|
/**
|
|
7726
7808
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
7727
|
-
|
|
7809
|
+
|
|
7728
7810
|
xyz
|
|
7729
|
-
|
|
7811
|
+
|
|
7730
7812
|
tms
|
|
7731
7813
|
*/
|
|
7732
7814
|
|
|
@@ -7739,19 +7821,19 @@ var PbfSchema;
|
|
|
7739
7821
|
})(PbfSchema || (PbfSchema = {}));
|
|
7740
7822
|
/**
|
|
7741
7823
|
* User permissions for server security objects (services, projects etc.)
|
|
7742
|
-
|
|
7824
|
+
|
|
7743
7825
|
none
|
|
7744
|
-
|
|
7826
|
+
|
|
7745
7827
|
configure
|
|
7746
|
-
|
|
7828
|
+
|
|
7747
7829
|
write
|
|
7748
|
-
|
|
7830
|
+
|
|
7749
7831
|
read
|
|
7750
|
-
|
|
7832
|
+
|
|
7751
7833
|
read,configure
|
|
7752
|
-
|
|
7834
|
+
|
|
7753
7835
|
read,write
|
|
7754
|
-
|
|
7836
|
+
|
|
7755
7837
|
read,write,configure
|
|
7756
7838
|
*/
|
|
7757
7839
|
|
|
@@ -7769,19 +7851,19 @@ var Permissions;
|
|
|
7769
7851
|
})(Permissions || (Permissions = {}));
|
|
7770
7852
|
/**
|
|
7771
7853
|
* Type of the authorization policy.
|
|
7772
|
-
|
|
7854
|
+
|
|
7773
7855
|
Unknown
|
|
7774
|
-
|
|
7856
|
+
|
|
7775
7857
|
CreateTable
|
|
7776
|
-
|
|
7858
|
+
|
|
7777
7859
|
CreateLayer
|
|
7778
|
-
|
|
7860
|
+
|
|
7779
7861
|
CreateProject
|
|
7780
|
-
|
|
7862
|
+
|
|
7781
7863
|
MaxFeaturesInOneTable
|
|
7782
|
-
|
|
7864
|
+
|
|
7783
7865
|
MaxObjectsToExport
|
|
7784
|
-
|
|
7866
|
+
|
|
7785
7867
|
MaxUploadContentSize
|
|
7786
7868
|
*/
|
|
7787
7869
|
|
|
@@ -7799,17 +7881,17 @@ var PolicyType;
|
|
|
7799
7881
|
})(PolicyType || (PolicyType = {}));
|
|
7800
7882
|
/**
|
|
7801
7883
|
* Types of table reference.
|
|
7802
|
-
|
|
7884
|
+
|
|
7803
7885
|
OneToMany
|
|
7804
|
-
|
|
7886
|
+
|
|
7805
7887
|
OneToOne
|
|
7806
|
-
|
|
7888
|
+
|
|
7807
7889
|
Intersect
|
|
7808
|
-
|
|
7890
|
+
|
|
7809
7891
|
RightJoin
|
|
7810
|
-
|
|
7892
|
+
|
|
7811
7893
|
FullJoin
|
|
7812
|
-
|
|
7894
|
+
|
|
7813
7895
|
CrossJoin
|
|
7814
7896
|
*/
|
|
7815
7897
|
|
|
@@ -7826,19 +7908,19 @@ var ReferenceJoinType;
|
|
|
7826
7908
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
7827
7909
|
/**
|
|
7828
7910
|
* The `ResourceType` represents resource manager supports types.
|
|
7829
|
-
|
|
7911
|
+
|
|
7830
7912
|
Unknown
|
|
7831
|
-
|
|
7913
|
+
|
|
7832
7914
|
table
|
|
7833
|
-
|
|
7915
|
+
|
|
7834
7916
|
layer
|
|
7835
|
-
|
|
7917
|
+
|
|
7836
7918
|
project
|
|
7837
|
-
|
|
7919
|
+
|
|
7838
7920
|
file
|
|
7839
|
-
|
|
7921
|
+
|
|
7840
7922
|
feature
|
|
7841
|
-
|
|
7923
|
+
|
|
7842
7924
|
tag
|
|
7843
7925
|
*/
|
|
7844
7926
|
|
|
@@ -7864,21 +7946,21 @@ var ResourceTypeLink;
|
|
|
7864
7946
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
7865
7947
|
/**
|
|
7866
7948
|
* Status of the server task.
|
|
7867
|
-
|
|
7949
|
+
|
|
7868
7950
|
None
|
|
7869
|
-
|
|
7951
|
+
|
|
7870
7952
|
Scheduled
|
|
7871
|
-
|
|
7953
|
+
|
|
7872
7954
|
Planning
|
|
7873
|
-
|
|
7955
|
+
|
|
7874
7956
|
Executing
|
|
7875
|
-
|
|
7957
|
+
|
|
7876
7958
|
Completed
|
|
7877
|
-
|
|
7959
|
+
|
|
7878
7960
|
Failed
|
|
7879
|
-
|
|
7961
|
+
|
|
7880
7962
|
Canceled
|
|
7881
|
-
|
|
7963
|
+
|
|
7882
7964
|
Timeout
|
|
7883
7965
|
*/
|
|
7884
7966
|
|
|
@@ -7897,11 +7979,11 @@ var ServerTaskStatus;
|
|
|
7897
7979
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
7898
7980
|
/**
|
|
7899
7981
|
* Simplify type.
|
|
7900
|
-
|
|
7982
|
+
|
|
7901
7983
|
Basic
|
|
7902
|
-
|
|
7984
|
+
|
|
7903
7985
|
PreserveTopology
|
|
7904
|
-
|
|
7986
|
+
|
|
7905
7987
|
VW
|
|
7906
7988
|
*/
|
|
7907
7989
|
|
|
@@ -7915,13 +7997,13 @@ var SimplifyType;
|
|
|
7915
7997
|
})(SimplifyType || (SimplifyType = {}));
|
|
7916
7998
|
/**
|
|
7917
7999
|
* The `StringSubType` provides information about string attribute subtype.
|
|
7918
|
-
|
|
8000
|
+
|
|
7919
8001
|
None
|
|
7920
|
-
|
|
8002
|
+
|
|
7921
8003
|
Image
|
|
7922
|
-
|
|
8004
|
+
|
|
7923
8005
|
PkkCode
|
|
7924
|
-
|
|
8006
|
+
|
|
7925
8007
|
Attachments
|
|
7926
8008
|
*/
|
|
7927
8009
|
|
|
@@ -7936,9 +8018,9 @@ var StringSubType;
|
|
|
7936
8018
|
})(StringSubType || (StringSubType = {}));
|
|
7937
8019
|
/**
|
|
7938
8020
|
* Task owner group.
|
|
7939
|
-
|
|
8021
|
+
|
|
7940
8022
|
my
|
|
7941
|
-
|
|
8023
|
+
|
|
7942
8024
|
all
|
|
7943
8025
|
*/
|
|
7944
8026
|
|
|
@@ -7951,13 +8033,13 @@ var TaskGroup;
|
|
|
7951
8033
|
})(TaskGroup || (TaskGroup = {}));
|
|
7952
8034
|
/**
|
|
7953
8035
|
* Sets the horizontal alignment of text.
|
|
7954
|
-
|
|
8036
|
+
|
|
7955
8037
|
right
|
|
7956
|
-
|
|
8038
|
+
|
|
7957
8039
|
left
|
|
7958
|
-
|
|
8040
|
+
|
|
7959
8041
|
center
|
|
7960
|
-
|
|
8042
|
+
|
|
7961
8043
|
justified
|
|
7962
8044
|
*/
|
|
7963
8045
|
|
|
@@ -7972,11 +8054,11 @@ var TextAlignment;
|
|
|
7972
8054
|
})(TextAlignment || (TextAlignment = {}));
|
|
7973
8055
|
/**
|
|
7974
8056
|
* Sets the vertical alignment of text.
|
|
7975
|
-
|
|
8057
|
+
|
|
7976
8058
|
top
|
|
7977
|
-
|
|
8059
|
+
|
|
7978
8060
|
bottom
|
|
7979
|
-
|
|
8061
|
+
|
|
7980
8062
|
middle
|
|
7981
8063
|
*/
|
|
7982
8064
|
|