@evergis/api 3.0.159 → 3.0.162
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 +2 -1
- package/dist/__generated__/CamerasService.d.ts +86 -0
- package/dist/__generated__/ImportService.d.ts +13 -2
- package/dist/__generated__/LayersService.d.ts +2 -2
- 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 +276 -23
- package/dist/api.cjs.development.js +232 -34
- 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 -36
- package/dist/api.esm.js.map +1 -1
- package/dist/layers/EvergisDynamicLayer.d.ts +3 -3
- package/dist/services/Cameras.d.ts +3 -0
- package/dist/services/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -433,6 +433,184 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
|
|
|
433
433
|
return _createClass(BulkOperations);
|
|
434
434
|
}(BulkOperationsService);
|
|
435
435
|
|
|
436
|
+
const _excluded$1 = ["cameraId"],
|
|
437
|
+
_excluded2 = ["cameraId"],
|
|
438
|
+
_excluded3 = ["cameraId"],
|
|
439
|
+
_excluded4 = ["cameraId"],
|
|
440
|
+
_excluded5 = ["cameraId"];
|
|
441
|
+
/**
|
|
442
|
+
* @title Spatial Processing Core API
|
|
443
|
+
* @version 1.0.0
|
|
444
|
+
* @baseUrl /sp
|
|
445
|
+
*/
|
|
446
|
+
|
|
447
|
+
let CamerasService = /*#__PURE__*/function (_Service) {
|
|
448
|
+
_inherits(CamerasService, _Service);
|
|
449
|
+
|
|
450
|
+
var _super = /*#__PURE__*/_createSuper(CamerasService);
|
|
451
|
+
|
|
452
|
+
function CamerasService() {
|
|
453
|
+
_classCallCheck(this, CamerasService);
|
|
454
|
+
|
|
455
|
+
return _super.apply(this, arguments);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
_createClass(CamerasService, [{
|
|
459
|
+
key: "getCameras",
|
|
460
|
+
value:
|
|
461
|
+
/**
|
|
462
|
+
* No description
|
|
463
|
+
*
|
|
464
|
+
* @tags Cameras
|
|
465
|
+
* @name GetCameras
|
|
466
|
+
* @operationId CamerasController_GetCameras
|
|
467
|
+
* @summary Get cameras list.
|
|
468
|
+
* @request GET:/cameras
|
|
469
|
+
* @response `200` Success
|
|
470
|
+
*/
|
|
471
|
+
function getCameras(query) {
|
|
472
|
+
return this.http.get("/cameras", query).json();
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* No description
|
|
476
|
+
*
|
|
477
|
+
* @tags Cameras
|
|
478
|
+
* @name GetArchiveFeed
|
|
479
|
+
* @operationId CamerasController_GetArchiveFeed
|
|
480
|
+
* @summary Streams an FLV-over-HTTP archive feed starting at specific time.
|
|
481
|
+
* @request GET:/cameras/{cameraId}/archiveFeed
|
|
482
|
+
* @response `200` Success
|
|
483
|
+
*/
|
|
484
|
+
|
|
485
|
+
}, {
|
|
486
|
+
key: "getArchiveFeed",
|
|
487
|
+
value: function getArchiveFeed(_ref) {
|
|
488
|
+
let {
|
|
489
|
+
cameraId
|
|
490
|
+
} = _ref,
|
|
491
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
492
|
+
|
|
493
|
+
return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* No description
|
|
497
|
+
*
|
|
498
|
+
* @tags Cameras
|
|
499
|
+
* @name GetArchiveTimeline
|
|
500
|
+
* @operationId CamerasController_GetArchiveTimeline
|
|
501
|
+
* @summary Returns a list of records available within a given timeframe.
|
|
502
|
+
* @request GET:/cameras/{cameraId}/archiveTimeline
|
|
503
|
+
* @response `200` Success
|
|
504
|
+
*/
|
|
505
|
+
|
|
506
|
+
}, {
|
|
507
|
+
key: "getArchiveTimeline",
|
|
508
|
+
value: function getArchiveTimeline(_ref2) {
|
|
509
|
+
let {
|
|
510
|
+
cameraId
|
|
511
|
+
} = _ref2,
|
|
512
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
513
|
+
|
|
514
|
+
return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* No description
|
|
518
|
+
*
|
|
519
|
+
* @tags Cameras
|
|
520
|
+
* @name GetArchiveCalendar
|
|
521
|
+
* @operationId CamerasController_GetArchiveCalendar
|
|
522
|
+
* @summary Returns a list of records available within a given timeframe.
|
|
523
|
+
* @request GET:/cameras/{cameraId}/archiveCalendar
|
|
524
|
+
* @response `200` Success
|
|
525
|
+
*/
|
|
526
|
+
|
|
527
|
+
}, {
|
|
528
|
+
key: "getArchiveCalendar",
|
|
529
|
+
value: function getArchiveCalendar(_ref3) {
|
|
530
|
+
let {
|
|
531
|
+
cameraId
|
|
532
|
+
} = _ref3,
|
|
533
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
534
|
+
|
|
535
|
+
return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
|
|
536
|
+
}
|
|
537
|
+
/**
|
|
538
|
+
* No description
|
|
539
|
+
*
|
|
540
|
+
* @tags Cameras
|
|
541
|
+
* @name GetArchiveSnapshot
|
|
542
|
+
* @operationId CamerasController_GetArchiveSnapshot
|
|
543
|
+
* @summary Returns a JPEG image from the Camera’s archive.
|
|
544
|
+
* @request GET:/cameras/{cameraId}/archiveSnapshot
|
|
545
|
+
* @response `200` Success
|
|
546
|
+
*/
|
|
547
|
+
|
|
548
|
+
}, {
|
|
549
|
+
key: "getArchiveSnapshot",
|
|
550
|
+
value: function getArchiveSnapshot(_ref4) {
|
|
551
|
+
let {
|
|
552
|
+
cameraId
|
|
553
|
+
} = _ref4,
|
|
554
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
555
|
+
|
|
556
|
+
return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* No description
|
|
560
|
+
*
|
|
561
|
+
* @tags Cameras
|
|
562
|
+
* @name GetLiveFeed
|
|
563
|
+
* @operationId CamerasController_GetLiveFeed
|
|
564
|
+
* @summary Streams live video feed from the Camera.
|
|
565
|
+
* @request GET:/cameras/{cameraId}/liveFeed
|
|
566
|
+
* @response `200` Success
|
|
567
|
+
*/
|
|
568
|
+
|
|
569
|
+
}, {
|
|
570
|
+
key: "getLiveFeed",
|
|
571
|
+
value: function getLiveFeed(_ref5) {
|
|
572
|
+
let {
|
|
573
|
+
cameraId
|
|
574
|
+
} = _ref5,
|
|
575
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
576
|
+
|
|
577
|
+
return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
|
|
578
|
+
}
|
|
579
|
+
/**
|
|
580
|
+
* No description
|
|
581
|
+
*
|
|
582
|
+
* @tags Cameras
|
|
583
|
+
* @name GetLiveSnapshot
|
|
584
|
+
* @operationId CamerasController_GetLiveSnapshot
|
|
585
|
+
* @summary Returns a JPEG image from the Camera’s live feed.
|
|
586
|
+
* @request GET:/cameras/{cameraId}/liveSnapshot
|
|
587
|
+
* @response `200` Success
|
|
588
|
+
*/
|
|
589
|
+
|
|
590
|
+
}, {
|
|
591
|
+
key: "getLiveSnapshot",
|
|
592
|
+
value: function getLiveSnapshot(cameraId) {
|
|
593
|
+
return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
|
|
594
|
+
}
|
|
595
|
+
}]);
|
|
596
|
+
|
|
597
|
+
return CamerasService;
|
|
598
|
+
}(Service);
|
|
599
|
+
|
|
600
|
+
let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
601
|
+
_inherits(Cameras, _CamerasService);
|
|
602
|
+
|
|
603
|
+
var _super = /*#__PURE__*/_createSuper(Cameras);
|
|
604
|
+
|
|
605
|
+
function Cameras() {
|
|
606
|
+
_classCallCheck(this, Cameras);
|
|
607
|
+
|
|
608
|
+
return _super.apply(this, arguments);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
return _createClass(Cameras);
|
|
612
|
+
}(CamerasService);
|
|
613
|
+
|
|
436
614
|
/**
|
|
437
615
|
* @title Spatial Processing Core API
|
|
438
616
|
* @version 1.0.0
|
|
@@ -876,13 +1054,29 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
876
1054
|
value: function getExternalPbfLayers(query) {
|
|
877
1055
|
return this.http.get("/import/pbf", query).json();
|
|
878
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
* No description
|
|
1059
|
+
*
|
|
1060
|
+
* @tags ImportService
|
|
1061
|
+
* @name GetExternalArcgisFsLayers
|
|
1062
|
+
* @operationId ImportServiceController_GetExternalArcgisFSLayers
|
|
1063
|
+
* @summary Get list of external ArcGis FeatureServer layers.
|
|
1064
|
+
* @request GET:/import/arcgisfeatureservice
|
|
1065
|
+
* @response `200` Success
|
|
1066
|
+
*/
|
|
1067
|
+
|
|
1068
|
+
}, {
|
|
1069
|
+
key: "getExternalArcgisFsLayers",
|
|
1070
|
+
value: function getExternalArcgisFsLayers(query) {
|
|
1071
|
+
return this.http.get("/import/arcgisfeatureservice", query).json();
|
|
1072
|
+
}
|
|
879
1073
|
/**
|
|
880
1074
|
* No description
|
|
881
1075
|
*
|
|
882
1076
|
* @tags ImportService
|
|
883
1077
|
* @name GetExternalArcGisLayers
|
|
884
1078
|
* @operationId ImportServiceController_GetExternalArcGisLayers
|
|
885
|
-
* @summary Get list of external ArcGis
|
|
1079
|
+
* @summary Get list of external ArcGis MapServer layers.
|
|
886
1080
|
* @request GET:/import/arcgismapservice
|
|
887
1081
|
* @response `200` Success
|
|
888
1082
|
*/
|
|
@@ -1712,11 +1906,11 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
1712
1906
|
return Scheduler;
|
|
1713
1907
|
}(SchedulerService);
|
|
1714
1908
|
|
|
1715
|
-
const _excluded$
|
|
1716
|
-
_excluded2 = ["name"],
|
|
1717
|
-
_excluded3 = ["name"],
|
|
1718
|
-
_excluded4 = ["name", "id"],
|
|
1719
|
-
_excluded5 = ["name", "id"],
|
|
1909
|
+
const _excluded$2 = ["name"],
|
|
1910
|
+
_excluded2$1 = ["name"],
|
|
1911
|
+
_excluded3$1 = ["name"],
|
|
1912
|
+
_excluded4$1 = ["name", "id"],
|
|
1913
|
+
_excluded5$1 = ["name", "id"],
|
|
1720
1914
|
_excluded6 = ["name", "id"],
|
|
1721
1915
|
_excluded7 = ["name", "x", "y", "z"],
|
|
1722
1916
|
_excluded8 = ["name"],
|
|
@@ -2220,7 +2414,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2220
2414
|
let {
|
|
2221
2415
|
name
|
|
2222
2416
|
} = _ref,
|
|
2223
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2417
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
2224
2418
|
|
|
2225
2419
|
return this.http.get("/layers/" + name + "/features", query).json();
|
|
2226
2420
|
}
|
|
@@ -2241,7 +2435,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2241
2435
|
let {
|
|
2242
2436
|
name
|
|
2243
2437
|
} = _ref2,
|
|
2244
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
2438
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
|
|
2245
2439
|
|
|
2246
2440
|
return this.http.delete("/layers/" + name + "/features", null, query).json();
|
|
2247
2441
|
}
|
|
@@ -2294,7 +2488,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2294
2488
|
let {
|
|
2295
2489
|
name
|
|
2296
2490
|
} = _ref3,
|
|
2297
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
2491
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
|
|
2298
2492
|
|
|
2299
2493
|
return this.http.get("/layers/" + name + "/features/contains", query).json();
|
|
2300
2494
|
}
|
|
@@ -2316,7 +2510,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2316
2510
|
name,
|
|
2317
2511
|
id
|
|
2318
2512
|
} = _ref4,
|
|
2319
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
2513
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
2320
2514
|
|
|
2321
2515
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
2322
2516
|
}
|
|
@@ -2338,7 +2532,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2338
2532
|
name,
|
|
2339
2533
|
id
|
|
2340
2534
|
} = _ref5,
|
|
2341
|
-
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
2535
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
2342
2536
|
|
|
2343
2537
|
return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
|
|
2344
2538
|
}
|
|
@@ -2889,7 +3083,7 @@ function notError(v) {
|
|
|
2889
3083
|
return !isError(v);
|
|
2890
3084
|
}
|
|
2891
3085
|
|
|
2892
|
-
const _excluded$
|
|
3086
|
+
const _excluded$3 = ["remote"];
|
|
2893
3087
|
let Layers = /*#__PURE__*/function (_LayersService) {
|
|
2894
3088
|
_inherits(Layers, _LayersService);
|
|
2895
3089
|
|
|
@@ -2929,7 +3123,7 @@ let Layers = /*#__PURE__*/function (_LayersService) {
|
|
|
2929
3123
|
let {
|
|
2930
3124
|
remote
|
|
2931
3125
|
} = _ref,
|
|
2932
|
-
configuration = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3126
|
+
configuration = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
2933
3127
|
|
|
2934
3128
|
if (remote) {
|
|
2935
3129
|
return this.publishRemoteTileService(configuration);
|
|
@@ -2978,10 +3172,10 @@ function isTileLayerService(layer) {
|
|
|
2978
3172
|
return layer.type && /TileService/.test(layer.type);
|
|
2979
3173
|
}
|
|
2980
3174
|
|
|
2981
|
-
const _excluded$
|
|
2982
|
-
_excluded2$
|
|
2983
|
-
_excluded3$
|
|
2984
|
-
_excluded4$
|
|
3175
|
+
const _excluded$4 = ["name"],
|
|
3176
|
+
_excluded2$2 = ["name"],
|
|
3177
|
+
_excluded3$2 = ["name"],
|
|
3178
|
+
_excluded4$2 = ["name"];
|
|
2985
3179
|
/**
|
|
2986
3180
|
* @title Spatial Processing Core API
|
|
2987
3181
|
* @version 1.0.0
|
|
@@ -3160,7 +3354,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3160
3354
|
let {
|
|
3161
3355
|
name
|
|
3162
3356
|
} = _ref,
|
|
3163
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3357
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
3164
3358
|
|
|
3165
3359
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
3166
3360
|
}
|
|
@@ -3197,7 +3391,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3197
3391
|
let {
|
|
3198
3392
|
name
|
|
3199
3393
|
} = _ref2,
|
|
3200
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
3394
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
|
|
3201
3395
|
|
|
3202
3396
|
return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
|
|
3203
3397
|
}
|
|
@@ -3218,7 +3412,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3218
3412
|
let {
|
|
3219
3413
|
name
|
|
3220
3414
|
} = _ref3,
|
|
3221
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
3415
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
3222
3416
|
|
|
3223
3417
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
3224
3418
|
}
|
|
@@ -3239,7 +3433,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3239
3433
|
let {
|
|
3240
3434
|
name
|
|
3241
3435
|
} = _ref4,
|
|
3242
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$
|
|
3436
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
|
|
3243
3437
|
|
|
3244
3438
|
return this.http.get("/tables/" + name + "/data/unique-values", query).json();
|
|
3245
3439
|
}
|
|
@@ -4136,9 +4330,9 @@ let Styles = /*#__PURE__*/function (_StyleService) {
|
|
|
4136
4330
|
return _createClass(Styles);
|
|
4137
4331
|
}(StyleService);
|
|
4138
4332
|
|
|
4139
|
-
const _excluded$
|
|
4140
|
-
_excluded2$
|
|
4141
|
-
_excluded3$
|
|
4333
|
+
const _excluded$5 = ["providerName"],
|
|
4334
|
+
_excluded2$3 = ["providerName"],
|
|
4335
|
+
_excluded3$3 = ["providerName"];
|
|
4142
4336
|
/**
|
|
4143
4337
|
* @title Spatial Processing Core API
|
|
4144
4338
|
* @version 1.0.0
|
|
@@ -4173,7 +4367,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
4173
4367
|
let {
|
|
4174
4368
|
providerName
|
|
4175
4369
|
} = _ref,
|
|
4176
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4370
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
4177
4371
|
|
|
4178
4372
|
return this.http.get("/geocode/" + providerName, query).json();
|
|
4179
4373
|
}
|
|
@@ -4194,7 +4388,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
4194
4388
|
let {
|
|
4195
4389
|
providerName
|
|
4196
4390
|
} = _ref2,
|
|
4197
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
4391
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
4198
4392
|
|
|
4199
4393
|
return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
|
|
4200
4394
|
}
|
|
@@ -4215,7 +4409,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
4215
4409
|
let {
|
|
4216
4410
|
providerName
|
|
4217
4411
|
} = _ref3,
|
|
4218
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
4412
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
|
|
4219
4413
|
|
|
4220
4414
|
return this.http.get("/geocode/" + providerName + "/suggest", query).json();
|
|
4221
4415
|
}
|
|
@@ -5200,7 +5394,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
5200
5394
|
return Account;
|
|
5201
5395
|
}(AccountService);
|
|
5202
5396
|
|
|
5203
|
-
const _excluded$
|
|
5397
|
+
const _excluded$6 = ["username"];
|
|
5204
5398
|
/**
|
|
5205
5399
|
* @title Spatial Processing Core API
|
|
5206
5400
|
* @version 1.0.0
|
|
@@ -5251,7 +5445,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
5251
5445
|
let {
|
|
5252
5446
|
username
|
|
5253
5447
|
} = _ref,
|
|
5254
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5448
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
5255
5449
|
|
|
5256
5450
|
return this.http.post("/account/user/preview/" + username, toFormData(data), query).json();
|
|
5257
5451
|
}
|
|
@@ -6201,7 +6395,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
6201
6395
|
return Feedback;
|
|
6202
6396
|
}(FeedbackService);
|
|
6203
6397
|
|
|
6204
|
-
const _excluded$
|
|
6398
|
+
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6205
6399
|
/**
|
|
6206
6400
|
* @title Spatial Processing Core API
|
|
6207
6401
|
* @version 1.0.0
|
|
@@ -6239,7 +6433,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
6239
6433
|
x,
|
|
6240
6434
|
y
|
|
6241
6435
|
} = _ref,
|
|
6242
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6436
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
6243
6437
|
|
|
6244
6438
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
6245
6439
|
}
|
|
@@ -6479,6 +6673,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6479
6673
|
_this.filters = new Filters(_this.http);
|
|
6480
6674
|
_this.import = new Import(_this.http);
|
|
6481
6675
|
_this.geocode = new Geocode(_this.http);
|
|
6676
|
+
_this.cameras = new Cameras(_this.http);
|
|
6482
6677
|
_this.print = new Print(_this.http);
|
|
6483
6678
|
_this.tools = new Tools(_this.http);
|
|
6484
6679
|
_this.resourceCatalog = new ResourceCatalog(_this.http);
|
|
@@ -6668,7 +6863,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
|
|
|
6668
6863
|
return EvergisTileLayer;
|
|
6669
6864
|
}(TileLayer);
|
|
6670
6865
|
|
|
6671
|
-
const _excluded$
|
|
6866
|
+
const _excluded$8 = ["name", "style", "condition", "dataFilterId"];
|
|
6672
6867
|
let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
6673
6868
|
_inherits(EvergisDynamicLayer, _DynamicLayer);
|
|
6674
6869
|
|
|
@@ -6683,7 +6878,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
|
6683
6878
|
condition,
|
|
6684
6879
|
dataFilterId
|
|
6685
6880
|
} = _ref,
|
|
6686
|
-
layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6881
|
+
layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
6687
6882
|
|
|
6688
6883
|
_classCallCheck(this, EvergisDynamicLayer);
|
|
6689
6884
|
|
|
@@ -7063,11 +7258,13 @@ Point
|
|
|
7063
7258
|
|
|
7064
7259
|
Polyline
|
|
7065
7260
|
|
|
7066
|
-
|
|
7261
|
+
MultiPolygon
|
|
7067
7262
|
|
|
7068
7263
|
Multipoint
|
|
7069
7264
|
|
|
7070
7265
|
H3Index
|
|
7266
|
+
|
|
7267
|
+
Json
|
|
7071
7268
|
*/
|
|
7072
7269
|
|
|
7073
7270
|
|
|
@@ -7083,9 +7280,10 @@ var AttributeType;
|
|
|
7083
7280
|
AttributeType["Boolean"] = "Boolean";
|
|
7084
7281
|
AttributeType["Point"] = "Point";
|
|
7085
7282
|
AttributeType["Polyline"] = "Polyline";
|
|
7086
|
-
AttributeType["MultiPolygon"] = "
|
|
7283
|
+
AttributeType["MultiPolygon"] = "MultiPolygon";
|
|
7087
7284
|
AttributeType["Multipoint"] = "Multipoint";
|
|
7088
7285
|
AttributeType["H3Index"] = "H3Index";
|
|
7286
|
+
AttributeType["Json"] = "Json";
|
|
7089
7287
|
})(AttributeType || (AttributeType = {}));
|
|
7090
7288
|
/**
|
|
7091
7289
|
* Describes classification methods.
|
|
@@ -7702,6 +7900,8 @@ None
|
|
|
7702
7900
|
Image
|
|
7703
7901
|
|
|
7704
7902
|
PkkCode
|
|
7903
|
+
|
|
7904
|
+
Attachments
|
|
7705
7905
|
*/
|
|
7706
7906
|
|
|
7707
7907
|
|
|
@@ -7711,6 +7911,7 @@ var StringSubType;
|
|
|
7711
7911
|
StringSubType["None"] = "None";
|
|
7712
7912
|
StringSubType["Image"] = "Image";
|
|
7713
7913
|
StringSubType["PkkCode"] = "PkkCode";
|
|
7914
|
+
StringSubType["Attachments"] = "Attachments";
|
|
7714
7915
|
})(StringSubType || (StringSubType = {}));
|
|
7715
7916
|
/**
|
|
7716
7917
|
* Task owner group.
|
|
@@ -7767,5 +7968,5 @@ var TextVerticalAlignment;
|
|
|
7767
7968
|
TextVerticalAlignment["Middle"] = "middle";
|
|
7768
7969
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
7769
7970
|
|
|
7770
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
7971
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, Cameras, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
7771
7972
|
//# sourceMappingURL=api.esm.js.map
|