@vertigis/viewer-spec 61.6.0 → 61.7.0

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.
@@ -94,6 +94,11 @@ export interface LayerSettingsArgs extends HasLayerSettings, HasLayers, HasSymbo
94
94
  */
95
95
  export interface FromKmlArgs extends HasFiles {
96
96
  }
97
+ /**
98
+ * Arguments for the layers.from-lpkx operation.
99
+ */
100
+ export interface FromLpkxArgs extends HasFiles {
101
+ }
97
102
  /**
98
103
  * Arguments for the layers.from-fgdb operation.
99
104
  */
@@ -287,6 +292,12 @@ export declare class LayersOperations extends OperationRegistry {
287
292
  * @webOnly
288
293
  */
289
294
  get fromFgdb(): Operation<FromFgdbArgs | Blob | Blob[], HasLayers>;
295
+ /**
296
+ * Convert the specified LPKX blob to layers. Web only.
297
+ *
298
+ * @webOnly
299
+ */
300
+ get fromLpkx(): Operation<FromLpkxArgs | Blob | Blob[], HasLayers>;
290
301
  /**
291
302
  * Convert the specified DXF blob to layers. If spatial references are not
292
303
  * specified, Web defaults both the input and output to the active map's
@@ -1 +1 @@
1
- import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends e{_prefix="layers";get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get resetDefinitionExpression(){return this._get("reset-definition-expression")}get resetSymbol(){return this._get("reset-symbol")}get setDefinitionExpression(){return this._get("set-definition-expression")}get setLabelClasses(){return this._get("set-label-classes")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{_prefix="layers";get getPopupTemplate(){return this._get("get-popup-template")}get getLabelClasses(){return this._get("get-label-classes")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editLabelSettings(){return this._get("edit-symbol-settings")}get editSymbols(){return this._get("edit-symbols")}get fromKml(){return this._get("from-kml")}get fromFgdb(){return this._get("from-fgdb")}get fromDxf(){return this._get("from-dxf")}get fromUrl(){return this._get("from-url")}}export class LayersEvents extends t{_prefix="layers";get definitionExpressionChanged(){return this._get("definition-expression-changed")}get visibilityChanged(){return this._get("visibility-changed")}}
1
+ import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as t}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class LayersCommands extends e{_prefix="layers";get ensureCanSetSymbol(){return this._get("ensure-can-set-symbol")}get resetDefinitionExpression(){return this._get("reset-definition-expression")}get resetSymbol(){return this._get("reset-symbol")}get setDefinitionExpression(){return this._get("set-definition-expression")}get setLabelClasses(){return this._get("set-label-classes")}get setPopupTemplate(){return this._get("set-popup-template")}get setSymbol(){return this._get("set-symbol")}get setTaskSettings(){return this._get("set-task-settings")}get setTitle(){return this._get("set-title")}get setVisibility(){return this._get("set-visibility")}get showLabels(){return this._get("show-labels")}get hideLabels(){return this._get("hide-labels")}}export class LayersOperations extends s{_prefix="layers";get getPopupTemplate(){return this._get("get-popup-template")}get getLabelClasses(){return this._get("get-label-classes")}get getTaskSettings(){return this._get("get-task-settings")}get getTitle(){return this._get("get-title")}get editSettings(){return this._get("edit-settings")}get editLabelSettings(){return this._get("edit-symbol-settings")}get editSymbols(){return this._get("edit-symbols")}get fromKml(){return this._get("from-kml")}get fromFgdb(){return this._get("from-fgdb")}get fromLpkx(){return this._get("from-lpkx")}get fromDxf(){return this._get("from-dxf")}get fromUrl(){return this._get("from-url")}}export class LayersEvents extends t{_prefix="layers";get definitionExpressionChanged(){return this._get("definition-expression-changed")}get visibilityChanged(){return this._get("visibility-changed")}}
@@ -5831,6 +5831,20 @@
5831
5831
  },
5832
5832
  "type": "object"
5833
5833
  },
5834
+ "FromLpkxArgs": {
5835
+ "additionalProperties": false,
5836
+ "description": "Arguments for the layers.from-lpkx operation.",
5837
+ "properties": {
5838
+ "blobs": {
5839
+ "description": "The data files to use for the command/operation.",
5840
+ "items": {
5841
+ "$ref": "FileLike"
5842
+ },
5843
+ "type": "array"
5844
+ }
5845
+ },
5846
+ "type": "object"
5847
+ },
5834
5848
  "FromShapefileConversionArgs": {
5835
5849
  "additionalProperties": false,
5836
5850
  "description": "Arguments for the \"results.from-shapefile\" operation.",
@@ -25187,6 +25201,31 @@
25187
25201
  "layers.from-kml:output": {
25188
25202
  "$ref": "#/definitions/HasLayers"
25189
25203
  },
25204
+ "layers.from-lpkx": {
25205
+ "description": "Convert the specified LPKX blob to layers. Web only.",
25206
+ "enum": [
25207
+ "layers.from-lpkx"
25208
+ ]
25209
+ },
25210
+ "layers.from-lpkx:input": {
25211
+ "anyOf": [
25212
+ {
25213
+ "$ref": "#/definitions/FromLpkxArgs"
25214
+ },
25215
+ {
25216
+ "$ref": "global.Blob"
25217
+ },
25218
+ {
25219
+ "items": {
25220
+ "$ref": "global.Blob"
25221
+ },
25222
+ "type": "array"
25223
+ }
25224
+ ]
25225
+ },
25226
+ "layers.from-lpkx:output": {
25227
+ "$ref": "#/definitions/HasLayers"
25228
+ },
25190
25229
  "layers.from-url": {
25191
25230
  "description": "Attempts to create layer(s) from a url. Web only.\n\nThe url could be to an ArcGIS Server Url, WMS, WFS, WMTS, GeoJson, GeoRss, Csv, Kml, kmz, OGC Feature Layer, or an Arcgis Portal Item.",
25192
25231
  "enum": [
@@ -32347,6 +32386,22 @@
32347
32386
  ],
32348
32387
  "type": "object"
32349
32388
  },
32389
+ {
32390
+ "additionalProperties": false,
32391
+ "properties": {
32392
+ "arguments": {
32393
+ "$ref": "#/definitions/layers.from-lpkx:input"
32394
+ },
32395
+ "name": {
32396
+ "$ref": "#/definitions/layers.from-lpkx"
32397
+ }
32398
+ },
32399
+ "required": [
32400
+ "name",
32401
+ "arguments"
32402
+ ],
32403
+ "type": "object"
32404
+ },
32350
32405
  {
32351
32406
  "additionalProperties": false,
32352
32407
  "properties": {
@@ -33549,6 +33604,9 @@
33549
33604
  {
33550
33605
  "$ref": "#/definitions/layers.from-kml"
33551
33606
  },
33607
+ {
33608
+ "$ref": "#/definitions/layers.from-lpkx"
33609
+ },
33552
33610
  {
33553
33611
  "$ref": "#/definitions/layers.from-url"
33554
33612
  },
@@ -542,6 +542,28 @@ FromKmlArgs properties:
542
542
 
543
543
  Outputs: `HasLayers`
544
544
 
545
+ ---
546
+ # operation: layers.from-lpkx
547
+ Description: Convert the specified LPKX blob to layers. Web only.
548
+
549
+ Inputs: `( FromLpkxArgs | global.Blob | global.Blob[] )`
550
+
551
+ FromLpkxArgs properties:
552
+ ```json
553
+ {
554
+ "blobs": {
555
+ "description": "The data files to use for the command/operation.",
556
+ "items": {
557
+ "$ref": "FileLike",
558
+ "FileLike": {}
559
+ },
560
+ "type": "array"
561
+ }
562
+ }
563
+ ```
564
+
565
+ Outputs: `HasLayers`
566
+
545
567
  ---
546
568
  # operation: layers.from-url
547
569
  Description: Attempts to create layer(s) from a url. Web only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "61.6.0",
3
+ "version": "61.7.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "61.6.0";
4
+ export declare const version = "61.7.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "61.6.0";
4
+ export const version = "61.7.0";