@vertigis/viewer-spec 48.7.1 → 48.8.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.
@@ -52,7 +52,7 @@ export interface CreateGraphicsResult {
52
52
  */
53
53
  graphics: Graphic[];
54
54
  /**
55
- * The map that the graphics were created on.
55
+ * The map that the graphics were created on. Only available in Web.
56
56
  */
57
57
  maps: MapsLike;
58
58
  }
@@ -1,3 +1,4 @@
1
+ import type Geometry from "@arcgis/core/geometry/Geometry";
1
2
  import type LineSymbol3D from "@arcgis/core/symbols/LineSymbol3D";
2
3
  import type PictureFillSymbol from "@arcgis/core/symbols/PictureFillSymbol";
3
4
  import type PictureMarkerSymbol from "@arcgis/core/symbols/PictureMarkerSymbol";
@@ -22,6 +23,7 @@ import { CommandRegistry } from "../CommandRegistry.js";
22
23
  import type { Operation } from "../Operation.js";
23
24
  import { OperationRegistry } from "../OperationRegistry.js";
24
25
  import type { CreateGraphicsResult, GeometryLike, HasFeatures, HasGraphics, HasLayers, HasMaps, HasSymbol, HasUITarget, SymbolLike } from "../common.js";
26
+ import type { CaptureGeometryArgs } from "./sketching.js";
25
27
  /**
26
28
  * Symbols supported for drawing.
27
29
  */
@@ -70,7 +72,31 @@ export interface EditSymbolResult extends HasMaps, HasLayers, HasGraphics, HasFe
70
72
  */
71
73
  symbol: Symbol;
72
74
  }
75
+ /**
76
+ * Arguments for the "drawing.create-graphics" operation. Only available in Mobile.
77
+ */
78
+ export interface CreateGraphicsArgs {
79
+ /**
80
+ * The geometry that was captured.
81
+ */
82
+ geometry: Geometry;
83
+ /**
84
+ * The symbol that should be used to create the graphic. If null, a default
85
+ * is provided.
86
+ */
87
+ symbol?: Symbol;
88
+ }
73
89
  export declare class DrawingCommands extends CommandRegistry {
90
+ /**
91
+ * Allows the user to draw on the map by capturing geometry, creating a
92
+ * graphic, and persisting the graphic on the map. This is a shortcut for
93
+ * the command chain ["sketching.capture-geometry",
94
+ * "drawing.create-graphics", "map.add-markup"]. Some default
95
+ * geometryEditorSettings are also applied.
96
+ *
97
+ * @mobileOnly
98
+ */
99
+ get draw(): Command<CaptureGeometryArgs>;
74
100
  /**
75
101
  * Sets a value that determines whether drawings will be synced
76
102
  * automatically across maps.
@@ -94,12 +120,16 @@ export declare class DrawingCommands extends CommandRegistry {
94
120
  }
95
121
  export declare class DrawingOperations extends OperationRegistry {
96
122
  /**
97
- * Creates graphics out of geometries with the current symbols that are set
98
- * on the DrawManager.
123
+ * Creates graphics.
99
124
  *
100
- * @webOnly
125
+ * In Web, creates graphics out of GeometryLike args, with the current
126
+ * symbols that are set on the DrawManager.
127
+ *
128
+ * In Mobile, creates graphics from the given CreateGraphicsArgs or
129
+ * CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol
130
+ * parameter is used, otherwise a default symbol is used.
101
131
  */
102
- get createGraphics(): Operation<GeometryLike, CreateGraphicsResult>;
132
+ get createGraphics(): Operation<CreateGraphicsArgs | CreateGraphicsArgs[] | GeometryLike, CreateGraphicsResult>;
103
133
  /**
104
134
  * Gets the value of the default point, line, or polygon symbol for the
105
135
  * provided geometry type.
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class DrawingCommands extends CommandRegistry{get setSync(){return this._messages.command("drawing.set-sync")}get setDefaultSymbol(){return this._messages.command("drawing.set-default-symbol")}get setSymbol(){return this._messages.command("drawing.set-symbol")}}export class DrawingOperations extends OperationRegistry{get createGraphics(){return this._messages.operation("drawing.create-graphics")}get getDefaultSymbol(){return this._messages.operation("drawing.get-default-symbol")}get getDefaultSymbol3D(){return this._messages.operation("drawing.get-default-symbol-3d")}get editSymbol(){return this._messages.operation("drawing.edit-symbol")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class DrawingCommands extends CommandRegistry{get draw(){return this._messages.command("drawing.draw")}get setSync(){return this._messages.command("drawing.set-sync")}get setDefaultSymbol(){return this._messages.command("drawing.set-default-symbol")}get setSymbol(){return this._messages.command("drawing.set-symbol")}}export class DrawingOperations extends OperationRegistry{get createGraphics(){return this._messages.operation("drawing.create-graphics")}get getDefaultSymbol(){return this._messages.operation("drawing.get-default-symbol")}get getDefaultSymbol3D(){return this._messages.operation("drawing.get-default-symbol-3d")}get editSymbol(){return this._messages.operation("drawing.edit-symbol")}}
@@ -1,3 +1,4 @@
1
+ import type Graphic from "@arcgis/core/Graphic.js";
1
2
  import type EsriMap from "@arcgis/core/Map";
2
3
  import type Viewpoint from "@arcgis/core/Viewpoint";
3
4
  import type Extent from "@arcgis/core/geometry/Extent";
@@ -11,6 +12,7 @@ import type { LayerExtension } from "@vertigis/arcgis-extensions/mapping/LayerEx
11
12
  import type { MapExtension, ViewMode } from "@vertigis/arcgis-extensions/mapping/MapExtension";
12
13
  import type { GeometryType } from "@vertigis/arcgis-extensions/portal/Geometry";
13
14
  import type { OperationalLayer as OperationalLayerJson } from "@vertigis/arcgis-extensions/portal/OperationalLayer";
15
+ import type { Symbol as SymbolJson } from "@vertigis/arcgis-extensions/portal/Symbol";
14
16
  import type { Action } from "@vertigis/arcgis-extensions/support/Action";
15
17
  import type { PortalItemLike } from "@vertigis/arcgis-extensions/utilities/portal";
16
18
  import type { Command } from "../Command.js";
@@ -583,7 +585,7 @@ export interface StartSketchArgs {
583
585
  */
584
586
  retainEditorSettings: boolean;
585
587
  /**
586
- * The settings to be applied to the geometry editor.
588
+ * The settings to be applied to the sketch.
587
589
  */
588
590
  editorSettings: GeometryEditorSettings;
589
591
  /**
@@ -591,6 +593,19 @@ export interface StartSketchArgs {
591
593
  * sketch. Default is no limit. Mobile only.
592
594
  */
593
595
  maxSegments?: number;
596
+ /**
597
+ * An optional symbol to use.
598
+ */
599
+ symbol?: SymbolJson;
600
+ }
601
+ /**
602
+ * Arguments for the "map.add-markup" operation. Only available in Mobile.
603
+ */
604
+ export interface AddMarkupArgs {
605
+ /**
606
+ * The graphics to add to the map.
607
+ */
608
+ graphics: Graphic[];
594
609
  }
595
610
  /**
596
611
  * Result of the "map.get-coordinate-transformation" operation.
@@ -627,9 +642,11 @@ export declare class MapCommands extends CommandRegistry {
627
642
  /**
628
643
  * Adds markup to the map(s).
629
644
  *
630
- * @webOnly
645
+ * In Web, uses GraphicsLike args.
646
+ *
647
+ * In Mobile, uses AddMarkupArgs or some GraphicsLike args.
631
648
  */
632
- get addMarkup(): Command<GraphicsLike>;
649
+ get addMarkup(): Command<AddMarkupArgs | GraphicsLike>;
633
650
  /**
634
651
  * Add the specified layer(s) to the maps(s). Layers will be inserted in the
635
652
  * order specified and will be added above existing layers in the drawing
@@ -224,6 +224,10 @@ export interface CaptureGeometryArgs {
224
224
  * sketch. Default is no limit. Mobile only.
225
225
  */
226
226
  maxSegments?: number;
227
+ /**
228
+ * The settings to be applied to the sketch. Mobile only.
229
+ */
230
+ editorSettings?: GeometryEditorSettings;
227
231
  }
228
232
  /**
229
233
  * Result of the "sketching.capture-geometry" operation.
@@ -521,7 +525,7 @@ export declare type EditorGeometryMode = "line" | "area";
521
525
  */
522
526
  export declare type EditorInteractionMode = "centerCrosshair" | "freehand";
523
527
  /**
524
- * Settings for the geometry editor.
528
+ * Settings for a sketch.
525
529
  */
526
530
  export interface GeometryEditorSettings {
527
531
  /**
@@ -540,6 +544,19 @@ export interface GeometryEditorSettings {
540
544
  * The editor interaction mode.
541
545
  */
542
546
  editorInteractionMode?: EditorInteractionMode;
547
+ /**
548
+ * A value indicating whether the sketch is using freehand or segment sketching.
549
+ */
550
+ freehand?: boolean;
551
+ /**
552
+ * A value indicating whether the sketch should stop when double clicking.
553
+ */
554
+ finishOnDoubleClick?: boolean;
555
+ /**
556
+ * A value indicating whether the sketch should commit its geometry if
557
+ * another sketch is activated.
558
+ */
559
+ finishIfInterrupted?: boolean;
543
560
  }
544
561
  /**
545
562
  * Result returned from the 'sketching.get-active-points' operation.
@@ -514,6 +514,23 @@
514
514
  ],
515
515
  "type": "object"
516
516
  },
517
+ "AddMarkupArgs": {
518
+ "additionalProperties": false,
519
+ "description": "Arguments for the \"map.add-markup\" operation. Only available in Mobile.",
520
+ "properties": {
521
+ "graphics": {
522
+ "description": "The graphics to add to the map.",
523
+ "items": {
524
+ "$ref": "#/definitions/esri.Graphic"
525
+ },
526
+ "type": "array"
527
+ }
528
+ },
529
+ "required": [
530
+ "graphics"
531
+ ],
532
+ "type": "object"
533
+ },
517
534
  "AddNodeOrder": {
518
535
  "description": "Indicates whether a new point should be added before or after the active point in a sketch.",
519
536
  "enum": [
@@ -599,6 +616,10 @@
599
616
  "additionalProperties": false,
600
617
  "description": "Arguments for the \"sketching.capture-geometry\" operation.",
601
618
  "properties": {
619
+ "editorSettings": {
620
+ "$ref": "#/definitions/GeometryEditorSettings",
621
+ "description": "The settings to be applied to the sketch. Mobile only."
622
+ },
602
623
  "geometryType": {
603
624
  "anyOf": [
604
625
  {
@@ -723,6 +744,24 @@
723
744
  },
724
745
  "type": "object"
725
746
  },
747
+ "CreateGraphicsArgs": {
748
+ "additionalProperties": false,
749
+ "description": "Arguments for the \"drawing.create-graphics\" operation. Only available in Mobile.",
750
+ "properties": {
751
+ "geometry": {
752
+ "$ref": "#/definitions/esri.Geometry",
753
+ "description": "The geometry that was captured."
754
+ },
755
+ "symbol": {
756
+ "$ref": "#/definitions/esri.Symbol",
757
+ "description": "The symbol that should be used to create the graphic. If null, a default is provided."
758
+ }
759
+ },
760
+ "required": [
761
+ "geometry"
762
+ ],
763
+ "type": "object"
764
+ },
726
765
  "CreateGraphicsResult": {
727
766
  "additionalProperties": false,
728
767
  "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
@@ -736,7 +775,7 @@
736
775
  },
737
776
  "maps": {
738
777
  "$ref": "MapsLike",
739
- "description": "The map that the graphics were created on."
778
+ "description": "The map that the graphics were created on. Only available in Web."
740
779
  }
741
780
  },
742
781
  "required": [
@@ -1130,6 +1169,22 @@
1130
1169
  },
1131
1170
  "type": "object"
1132
1171
  },
1172
+ "EditorGeometryMode": {
1173
+ "description": "The editor geometry mode.",
1174
+ "enum": [
1175
+ "area",
1176
+ "line"
1177
+ ],
1178
+ "type": "string"
1179
+ },
1180
+ "EditorInteractionMode": {
1181
+ "description": "The editor interaction mode.",
1182
+ "enum": [
1183
+ "centerCrosshair",
1184
+ "freehand"
1185
+ ],
1186
+ "type": "string"
1187
+ },
1133
1188
  "Features": {
1134
1189
  "anyOf": [
1135
1190
  {
@@ -1297,6 +1352,41 @@
1297
1352
  ],
1298
1353
  "type": "object"
1299
1354
  },
1355
+ "GeometryEditorSettings": {
1356
+ "additionalProperties": false,
1357
+ "description": "Settings for a sketch.",
1358
+ "properties": {
1359
+ "editorGeometryMode": {
1360
+ "$ref": "#/definitions/EditorGeometryMode",
1361
+ "description": "The editor geometry mode."
1362
+ },
1363
+ "editorInteractionMode": {
1364
+ "$ref": "#/definitions/EditorInteractionMode",
1365
+ "description": "The editor interaction mode."
1366
+ },
1367
+ "finishIfInterrupted": {
1368
+ "description": "A value indicating whether the sketch should commit its geometry if another sketch is activated.",
1369
+ "type": "boolean"
1370
+ },
1371
+ "finishOnDoubleClick": {
1372
+ "description": "A value indicating whether the sketch should stop when double clicking.",
1373
+ "type": "boolean"
1374
+ },
1375
+ "freehand": {
1376
+ "description": "A value indicating whether the sketch is using freehand or segment sketching.",
1377
+ "type": "boolean"
1378
+ },
1379
+ "showBearings": {
1380
+ "description": "A value indicating whether bearing labels should be shown on the map.",
1381
+ "type": "boolean"
1382
+ },
1383
+ "snappingEnabled": {
1384
+ "description": "A value indicating whether snapping should be enabled.",
1385
+ "type": "boolean"
1386
+ }
1387
+ },
1388
+ "type": "object"
1389
+ },
1300
1390
  "GeometryLike": {
1301
1391
  "anyOf": [
1302
1392
  {
@@ -2432,6 +2522,121 @@
2432
2522
  "basemap.set:input": {
2433
2523
  "$ref": "#/definitions/SetBasemapArgs"
2434
2524
  },
2525
+ "drawing.create-graphics": {
2526
+ "description": "Creates graphics. In Web, creates graphics out of GeometryLike args, with the current symbols that are set on the DrawManager. In Mobile, creates graphics from the given CreateGraphicsArgs or CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol parameter is used, otherwise a default symbol is used.",
2527
+ "enum": [
2528
+ "drawing.create-graphics"
2529
+ ]
2530
+ },
2531
+ "drawing.create-graphics:input": {
2532
+ "anyOf": [
2533
+ {
2534
+ "$ref": "#/definitions/esri.Geometry"
2535
+ },
2536
+ {
2537
+ "$ref": "#/definitions/esri.Graphic"
2538
+ },
2539
+ {
2540
+ "$ref": "#/definitions/esri.FeatureSet"
2541
+ },
2542
+ {
2543
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
2544
+ },
2545
+ {
2546
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
2547
+ },
2548
+ {
2549
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
2550
+ },
2551
+ {
2552
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
2553
+ },
2554
+ {
2555
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
2556
+ },
2557
+ {
2558
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
2559
+ },
2560
+ {
2561
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2562
+ },
2563
+ {
2564
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2565
+ },
2566
+ {
2567
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
2568
+ },
2569
+ {
2570
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
2571
+ },
2572
+ {
2573
+ "$ref": "#/definitions/CreateGraphicsResult"
2574
+ },
2575
+ {
2576
+ "items": {
2577
+ "anyOf": [
2578
+ {
2579
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2580
+ },
2581
+ {
2582
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2583
+ }
2584
+ ]
2585
+ },
2586
+ "type": "array"
2587
+ },
2588
+ {
2589
+ "items": {
2590
+ "anyOf": [
2591
+ {
2592
+ "$ref": "#/definitions/esri.Graphic"
2593
+ },
2594
+ {
2595
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
2596
+ }
2597
+ ]
2598
+ },
2599
+ "type": "array"
2600
+ },
2601
+ {
2602
+ "items": {
2603
+ "anyOf": [
2604
+ {
2605
+ "$ref": "#/definitions/esri.Geometry"
2606
+ },
2607
+ {
2608
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
2609
+ },
2610
+ {
2611
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
2612
+ },
2613
+ {
2614
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
2615
+ },
2616
+ {
2617
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
2618
+ },
2619
+ {
2620
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
2621
+ }
2622
+ ]
2623
+ },
2624
+ "type": "array"
2625
+ },
2626
+ {
2627
+ "$ref": "#/definitions/CreateGraphicsArgs"
2628
+ },
2629
+ {
2630
+ "items": {
2631
+ "$ref": "#/definitions/CreateGraphicsArgs"
2632
+ },
2633
+ "type": "array"
2634
+ }
2635
+ ]
2636
+ },
2637
+ "drawing.create-graphics:output": {
2638
+ "$ref": "#/definitions/CreateGraphicsResult"
2639
+ },
2435
2640
  "drawing.set-sync": {
2436
2641
  "description": "Sets a value that determines whether drawings will be synced automatically across maps.",
2437
2642
  "enum": [
@@ -11085,6 +11290,44 @@
11085
11290
  "highlights.remove:input": {
11086
11291
  "$ref": "#/definitions/Features"
11087
11292
  },
11293
+ "map.add-markup": {
11294
+ "description": "Adds markup to the map(s). In Web, uses GraphicsLike args. In Mobile, uses AddMarkupArgs or some GraphicsLike args.",
11295
+ "enum": [
11296
+ "map.add-markup"
11297
+ ]
11298
+ },
11299
+ "map.add-markup:input": {
11300
+ "anyOf": [
11301
+ {
11302
+ "$ref": "#/definitions/esri.Graphic"
11303
+ },
11304
+ {
11305
+ "$ref": "#/definitions/esri.FeatureSet"
11306
+ },
11307
+ {
11308
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
11309
+ },
11310
+ {
11311
+ "$ref": "#/definitions/CreateGraphicsResult"
11312
+ },
11313
+ {
11314
+ "items": {
11315
+ "anyOf": [
11316
+ {
11317
+ "$ref": "#/definitions/esri.Graphic"
11318
+ },
11319
+ {
11320
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
11321
+ }
11322
+ ]
11323
+ },
11324
+ "type": "array"
11325
+ },
11326
+ {
11327
+ "$ref": "#/definitions/AddMarkupArgs"
11328
+ }
11329
+ ]
11330
+ },
11088
11331
  "map.get-spatial-reference": {
11089
11332
  "description": "If a map extension ID is specified, returns the spatial reference for that map. If no map extension ID is specified, returns the spatial reference of the first available map.",
11090
11333
  "enum": [
@@ -12055,6 +12298,22 @@
12055
12298
  ],
12056
12299
  "type": "object"
12057
12300
  },
12301
+ {
12302
+ "additionalProperties": false,
12303
+ "properties": {
12304
+ "arguments": {
12305
+ "$ref": "#/definitions/map.add-markup:input"
12306
+ },
12307
+ "name": {
12308
+ "$ref": "#/definitions/map.add-markup"
12309
+ }
12310
+ },
12311
+ "required": [
12312
+ "name",
12313
+ "arguments"
12314
+ ],
12315
+ "type": "object"
12316
+ },
12058
12317
  {
12059
12318
  "additionalProperties": false,
12060
12319
  "properties": {
@@ -12565,6 +12824,9 @@
12565
12824
  {
12566
12825
  "$ref": "#/definitions/highlights.remove-focus"
12567
12826
  },
12827
+ {
12828
+ "$ref": "#/definitions/map.add-markup"
12829
+ },
12568
12830
  {
12569
12831
  "$ref": "#/definitions/map.pan-to-features"
12570
12832
  },
@@ -12688,6 +12950,22 @@
12688
12950
  ],
12689
12951
  "type": "object"
12690
12952
  },
12953
+ {
12954
+ "additionalProperties": false,
12955
+ "properties": {
12956
+ "arguments": {
12957
+ "$ref": "#/definitions/drawing.create-graphics:input"
12958
+ },
12959
+ "name": {
12960
+ "$ref": "#/definitions/drawing.create-graphics"
12961
+ }
12962
+ },
12963
+ "required": [
12964
+ "name",
12965
+ "arguments"
12966
+ ],
12967
+ "type": "object"
12968
+ },
12691
12969
  {
12692
12970
  "additionalProperties": false,
12693
12971
  "properties": {
@@ -12857,6 +13135,9 @@
12857
13135
  {
12858
13136
  "$ref": "#/definitions/basemap.get-current"
12859
13137
  },
13138
+ {
13139
+ "$ref": "#/definitions/drawing.create-graphics"
13140
+ },
12860
13141
  {
12861
13142
  "$ref": "#/definitions/geolocation.get-current-state"
12862
13143
  },
@@ -487,6 +487,23 @@
487
487
  ],
488
488
  "type": "object"
489
489
  },
490
+ "AddMarkupArgs": {
491
+ "additionalProperties": false,
492
+ "description": "Arguments for the \"map.add-markup\" operation. Only available in Mobile.",
493
+ "properties": {
494
+ "graphics": {
495
+ "description": "The graphics to add to the map.",
496
+ "items": {
497
+ "$ref": "#/definitions/esri.Graphic"
498
+ },
499
+ "type": "array"
500
+ }
501
+ },
502
+ "required": [
503
+ "graphics"
504
+ ],
505
+ "type": "object"
506
+ },
490
507
  "AddNodeOrder": {
491
508
  "description": "Indicates whether a new point should be added before or after the active point in a sketch.",
492
509
  "enum": [
@@ -689,6 +706,10 @@
689
706
  "additionalProperties": false,
690
707
  "description": "Arguments for the \"sketching.capture-geometry\" operation.",
691
708
  "properties": {
709
+ "editorSettings": {
710
+ "$ref": "#/definitions/GeometryEditorSettings",
711
+ "description": "The settings to be applied to the sketch. Mobile only."
712
+ },
692
713
  "geometryType": {
693
714
  "anyOf": [
694
715
  {
@@ -856,6 +877,24 @@
856
877
  ],
857
878
  "type": "object"
858
879
  },
880
+ "CreateGraphicsArgs": {
881
+ "additionalProperties": false,
882
+ "description": "Arguments for the \"drawing.create-graphics\" operation. Only available in Mobile.",
883
+ "properties": {
884
+ "geometry": {
885
+ "$ref": "#/definitions/esri.Geometry",
886
+ "description": "The geometry that was captured."
887
+ },
888
+ "symbol": {
889
+ "$ref": "#/definitions/esri.Symbol",
890
+ "description": "The symbol that should be used to create the graphic. If null, a default is provided."
891
+ }
892
+ },
893
+ "required": [
894
+ "geometry"
895
+ ],
896
+ "type": "object"
897
+ },
859
898
  "CreateGraphicsResult": {
860
899
  "additionalProperties": false,
861
900
  "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
@@ -869,7 +908,7 @@
869
908
  },
870
909
  "maps": {
871
910
  "$ref": "MapsLike",
872
- "description": "The map that the graphics were created on."
911
+ "description": "The map that the graphics were created on. Only available in Web."
873
912
  }
874
913
  },
875
914
  "required": [
@@ -1590,7 +1629,7 @@
1590
1629
  },
1591
1630
  "GeometryEditorSettings": {
1592
1631
  "additionalProperties": false,
1593
- "description": "Settings for the geometry editor.",
1632
+ "description": "Settings for a sketch.",
1594
1633
  "properties": {
1595
1634
  "editorGeometryMode": {
1596
1635
  "$ref": "#/definitions/EditorGeometryMode",
@@ -1600,6 +1639,18 @@
1600
1639
  "$ref": "#/definitions/EditorInteractionMode",
1601
1640
  "description": "The editor interaction mode."
1602
1641
  },
1642
+ "finishIfInterrupted": {
1643
+ "description": "A value indicating whether the sketch should commit its geometry if another sketch is activated.",
1644
+ "type": "boolean"
1645
+ },
1646
+ "finishOnDoubleClick": {
1647
+ "description": "A value indicating whether the sketch should stop when double clicking.",
1648
+ "type": "boolean"
1649
+ },
1650
+ "freehand": {
1651
+ "description": "A value indicating whether the sketch is using freehand or segment sketching.",
1652
+ "type": "boolean"
1653
+ },
1603
1654
  "showBearings": {
1604
1655
  "description": "A value indicating whether bearing labels should be shown on the map.",
1605
1656
  "type": "boolean"
@@ -2888,7 +2939,7 @@
2888
2939
  },
2889
2940
  "editorSettings": {
2890
2941
  "$ref": "#/definitions/GeometryEditorSettings",
2891
- "description": "The settings to be applied to the geometry editor."
2942
+ "description": "The settings to be applied to the sketch."
2892
2943
  },
2893
2944
  "geometry": {
2894
2945
  "$ref": "#/definitions/esri.Geometry",
@@ -2913,6 +2964,10 @@
2913
2964
  "retainEditorSettings": {
2914
2965
  "description": "A value indicating whether the previous geometry editor settings should be restored after this sketch is stopped.",
2915
2966
  "type": "boolean"
2967
+ },
2968
+ "symbol": {
2969
+ "$ref": "#/definitions/esri.rest-api.Symbol.Symbol",
2970
+ "description": "An optional symbol to use."
2916
2971
  }
2917
2972
  },
2918
2973
  "required": [
@@ -3349,6 +3404,130 @@
3349
3404
  "debug-console.display"
3350
3405
  ]
3351
3406
  },
3407
+ "drawing.create-graphics": {
3408
+ "description": "Creates graphics. In Web, creates graphics out of GeometryLike args, with the current symbols that are set on the DrawManager. In Mobile, creates graphics from the given CreateGraphicsArgs or CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol parameter is used, otherwise a default symbol is used.",
3409
+ "enum": [
3410
+ "drawing.create-graphics"
3411
+ ]
3412
+ },
3413
+ "drawing.create-graphics:input": {
3414
+ "anyOf": [
3415
+ {
3416
+ "$ref": "#/definitions/esri.Geometry"
3417
+ },
3418
+ {
3419
+ "$ref": "#/definitions/esri.Graphic"
3420
+ },
3421
+ {
3422
+ "$ref": "#/definitions/esri.FeatureSet"
3423
+ },
3424
+ {
3425
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
3426
+ },
3427
+ {
3428
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
3429
+ },
3430
+ {
3431
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
3432
+ },
3433
+ {
3434
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
3435
+ },
3436
+ {
3437
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
3438
+ },
3439
+ {
3440
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
3441
+ },
3442
+ {
3443
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
3444
+ },
3445
+ {
3446
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3447
+ },
3448
+ {
3449
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
3450
+ },
3451
+ {
3452
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
3453
+ },
3454
+ {
3455
+ "$ref": "#/definitions/CreateGraphicsResult"
3456
+ },
3457
+ {
3458
+ "items": {
3459
+ "anyOf": [
3460
+ {
3461
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3462
+ },
3463
+ {
3464
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
3465
+ }
3466
+ ]
3467
+ },
3468
+ "type": "array"
3469
+ },
3470
+ {
3471
+ "items": {
3472
+ "anyOf": [
3473
+ {
3474
+ "$ref": "#/definitions/esri.Graphic"
3475
+ },
3476
+ {
3477
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
3478
+ }
3479
+ ]
3480
+ },
3481
+ "type": "array"
3482
+ },
3483
+ {
3484
+ "items": {
3485
+ "anyOf": [
3486
+ {
3487
+ "$ref": "#/definitions/esri.Geometry"
3488
+ },
3489
+ {
3490
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
3491
+ },
3492
+ {
3493
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
3494
+ },
3495
+ {
3496
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
3497
+ },
3498
+ {
3499
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
3500
+ },
3501
+ {
3502
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
3503
+ }
3504
+ ]
3505
+ },
3506
+ "type": "array"
3507
+ },
3508
+ {
3509
+ "$ref": "#/definitions/CreateGraphicsArgs"
3510
+ },
3511
+ {
3512
+ "items": {
3513
+ "$ref": "#/definitions/CreateGraphicsArgs"
3514
+ },
3515
+ "type": "array"
3516
+ }
3517
+ ]
3518
+ },
3519
+ "drawing.create-graphics:output": {
3520
+ "$ref": "#/definitions/CreateGraphicsResult"
3521
+ },
3522
+ "drawing.draw": {
3523
+ "description": "Allows the user to draw on the map by capturing geometry, creating a graphic, and persisting the graphic on the map. This is a shortcut for the command chain [\"sketching.capture-geometry\", \"drawing.create-graphics\", \"map.add-markup\"]. Some default geometryEditorSettings are also applied.",
3524
+ "enum": [
3525
+ "drawing.draw"
3526
+ ]
3527
+ },
3528
+ "drawing.draw:input": {
3529
+ "$ref": "#/definitions/CaptureGeometryArgs"
3530
+ },
3352
3531
  "drawing.set-sync": {
3353
3532
  "description": "Sets a value that determines whether drawings will be synced automatically across maps.",
3354
3533
  "enum": [
@@ -12271,6 +12450,44 @@
12271
12450
  "log-viewer.display"
12272
12451
  ]
12273
12452
  },
12453
+ "map.add-markup": {
12454
+ "description": "Adds markup to the map(s). In Web, uses GraphicsLike args. In Mobile, uses AddMarkupArgs or some GraphicsLike args.",
12455
+ "enum": [
12456
+ "map.add-markup"
12457
+ ]
12458
+ },
12459
+ "map.add-markup:input": {
12460
+ "anyOf": [
12461
+ {
12462
+ "$ref": "#/definitions/esri.Graphic"
12463
+ },
12464
+ {
12465
+ "$ref": "#/definitions/esri.FeatureSet"
12466
+ },
12467
+ {
12468
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
12469
+ },
12470
+ {
12471
+ "$ref": "#/definitions/CreateGraphicsResult"
12472
+ },
12473
+ {
12474
+ "items": {
12475
+ "anyOf": [
12476
+ {
12477
+ "$ref": "#/definitions/esri.Graphic"
12478
+ },
12479
+ {
12480
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
12481
+ }
12482
+ ]
12483
+ },
12484
+ "type": "array"
12485
+ },
12486
+ {
12487
+ "$ref": "#/definitions/AddMarkupArgs"
12488
+ }
12489
+ ]
12490
+ },
12274
12491
  "map.disable-map-click": {
12275
12492
  "description": "Disables the click event handler on the map, so that if the user clicks on the map, the configured handler will not be invoked.",
12276
12493
  "enum": [
@@ -13666,6 +13883,22 @@
13666
13883
  ],
13667
13884
  "type": "object"
13668
13885
  },
13886
+ {
13887
+ "additionalProperties": false,
13888
+ "properties": {
13889
+ "arguments": {
13890
+ "$ref": "#/definitions/drawing.draw:input"
13891
+ },
13892
+ "name": {
13893
+ "$ref": "#/definitions/drawing.draw"
13894
+ }
13895
+ },
13896
+ "required": [
13897
+ "name",
13898
+ "arguments"
13899
+ ],
13900
+ "type": "object"
13901
+ },
13669
13902
  {
13670
13903
  "additionalProperties": false,
13671
13904
  "properties": {
@@ -14226,6 +14459,22 @@
14226
14459
  ],
14227
14460
  "type": "object"
14228
14461
  },
14462
+ {
14463
+ "additionalProperties": false,
14464
+ "properties": {
14465
+ "arguments": {
14466
+ "$ref": "#/definitions/map.add-markup:input"
14467
+ },
14468
+ "name": {
14469
+ "$ref": "#/definitions/map.add-markup"
14470
+ }
14471
+ },
14472
+ "required": [
14473
+ "name",
14474
+ "arguments"
14475
+ ],
14476
+ "type": "object"
14477
+ },
14229
14478
  {
14230
14479
  "additionalProperties": false,
14231
14480
  "properties": {
@@ -15357,6 +15606,9 @@
15357
15606
  {
15358
15607
  "$ref": "#/definitions/debug-console.display"
15359
15608
  },
15609
+ {
15610
+ "$ref": "#/definitions/drawing.draw"
15611
+ },
15360
15612
  {
15361
15613
  "$ref": "#/definitions/drawing.set-sync"
15362
15614
  },
@@ -15480,6 +15732,9 @@
15480
15732
  {
15481
15733
  "$ref": "#/definitions/log-viewer.display"
15482
15734
  },
15735
+ {
15736
+ "$ref": "#/definitions/map.add-markup"
15737
+ },
15483
15738
  {
15484
15739
  "$ref": "#/definitions/map.disable-map-click"
15485
15740
  },
@@ -15763,6 +16018,22 @@
15763
16018
  ],
15764
16019
  "type": "object"
15765
16020
  },
16021
+ {
16022
+ "additionalProperties": false,
16023
+ "properties": {
16024
+ "arguments": {
16025
+ "$ref": "#/definitions/drawing.create-graphics:input"
16026
+ },
16027
+ "name": {
16028
+ "$ref": "#/definitions/drawing.create-graphics"
16029
+ }
16030
+ },
16031
+ "required": [
16032
+ "name",
16033
+ "arguments"
16034
+ ],
16035
+ "type": "object"
16036
+ },
15766
16037
  {
15767
16038
  "additionalProperties": false,
15768
16039
  "properties": {
@@ -16367,6 +16638,9 @@
16367
16638
  {
16368
16639
  "$ref": "#/definitions/basemap.get-current"
16369
16640
  },
16641
+ {
16642
+ "$ref": "#/definitions/drawing.create-graphics"
16643
+ },
16370
16644
  {
16371
16645
  "$ref": "#/definitions/file.pick-file"
16372
16646
  },
@@ -766,6 +766,23 @@
766
766
  ],
767
767
  "type": "object"
768
768
  },
769
+ "AddMarkupArgs": {
770
+ "additionalProperties": false,
771
+ "description": "Arguments for the \"map.add-markup\" operation. Only available in Mobile.",
772
+ "properties": {
773
+ "graphics": {
774
+ "description": "The graphics to add to the map.",
775
+ "items": {
776
+ "$ref": "#/definitions/esri.Graphic"
777
+ },
778
+ "type": "array"
779
+ }
780
+ },
781
+ "required": [
782
+ "graphics"
783
+ ],
784
+ "type": "object"
785
+ },
769
786
  "AddNodeOrder": {
770
787
  "description": "Indicates whether a new point should be added before or after the active point in a sketch.",
771
788
  "enum": [
@@ -1039,6 +1056,10 @@
1039
1056
  "additionalProperties": false,
1040
1057
  "description": "Arguments for the \"sketching.capture-geometry\" operation.",
1041
1058
  "properties": {
1059
+ "editorSettings": {
1060
+ "$ref": "#/definitions/GeometryEditorSettings",
1061
+ "description": "The settings to be applied to the sketch. Mobile only."
1062
+ },
1042
1063
  "geometryType": {
1043
1064
  "anyOf": [
1044
1065
  {
@@ -1240,6 +1261,24 @@
1240
1261
  },
1241
1262
  "type": "object"
1242
1263
  },
1264
+ "CreateGraphicsArgs": {
1265
+ "additionalProperties": false,
1266
+ "description": "Arguments for the \"drawing.create-graphics\" operation. Only available in Mobile.",
1267
+ "properties": {
1268
+ "geometry": {
1269
+ "$ref": "#/definitions/esri.Geometry",
1270
+ "description": "The geometry that was captured."
1271
+ },
1272
+ "symbol": {
1273
+ "$ref": "#/definitions/esri.Symbol",
1274
+ "description": "The symbol that should be used to create the graphic. If null, a default is provided."
1275
+ }
1276
+ },
1277
+ "required": [
1278
+ "geometry"
1279
+ ],
1280
+ "type": "object"
1281
+ },
1243
1282
  "CreateGraphicsResult": {
1244
1283
  "additionalProperties": false,
1245
1284
  "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
@@ -1253,7 +1292,7 @@
1253
1292
  },
1254
1293
  "maps": {
1255
1294
  "$ref": "MapsLike",
1256
- "description": "The map that the graphics were created on."
1295
+ "description": "The map that the graphics were created on. Only available in Web."
1257
1296
  }
1258
1297
  },
1259
1298
  "required": [
@@ -1313,7 +1352,7 @@
1313
1352
  },
1314
1353
  "maps": {
1315
1354
  "$ref": "MapsLike",
1316
- "description": "The map that the graphics were created on."
1355
+ "description": "The map that the graphics were created on. Only available in Web."
1317
1356
  }
1318
1357
  },
1319
1358
  "required": [
@@ -1903,6 +1942,22 @@
1903
1942
  ],
1904
1943
  "type": "object"
1905
1944
  },
1945
+ "EditorGeometryMode": {
1946
+ "description": "The editor geometry mode.",
1947
+ "enum": [
1948
+ "area",
1949
+ "line"
1950
+ ],
1951
+ "type": "string"
1952
+ },
1953
+ "EditorInteractionMode": {
1954
+ "description": "The editor interaction mode.",
1955
+ "enum": [
1956
+ "centerCrosshair",
1957
+ "freehand"
1958
+ ],
1959
+ "type": "string"
1960
+ },
1906
1961
  "Features": {
1907
1962
  "anyOf": [
1908
1963
  {
@@ -2542,6 +2597,41 @@
2542
2597
  ],
2543
2598
  "description": "An object that is convertible to one or more geometries, or an object that has geometry."
2544
2599
  },
2600
+ "GeometryEditorSettings": {
2601
+ "additionalProperties": false,
2602
+ "description": "Settings for a sketch.",
2603
+ "properties": {
2604
+ "editorGeometryMode": {
2605
+ "$ref": "#/definitions/EditorGeometryMode",
2606
+ "description": "The editor geometry mode."
2607
+ },
2608
+ "editorInteractionMode": {
2609
+ "$ref": "#/definitions/EditorInteractionMode",
2610
+ "description": "The editor interaction mode."
2611
+ },
2612
+ "finishIfInterrupted": {
2613
+ "description": "A value indicating whether the sketch should commit its geometry if another sketch is activated.",
2614
+ "type": "boolean"
2615
+ },
2616
+ "finishOnDoubleClick": {
2617
+ "description": "A value indicating whether the sketch should stop when double clicking.",
2618
+ "type": "boolean"
2619
+ },
2620
+ "freehand": {
2621
+ "description": "A value indicating whether the sketch is using freehand or segment sketching.",
2622
+ "type": "boolean"
2623
+ },
2624
+ "showBearings": {
2625
+ "description": "A value indicating whether bearing labels should be shown on the map.",
2626
+ "type": "boolean"
2627
+ },
2628
+ "snappingEnabled": {
2629
+ "description": "A value indicating whether snapping should be enabled.",
2630
+ "type": "boolean"
2631
+ }
2632
+ },
2633
+ "type": "object"
2634
+ },
2545
2635
  "GeometryLike": {
2546
2636
  "anyOf": [
2547
2637
  {
@@ -5773,13 +5863,116 @@
5773
5863
  "$ref": "#/definitions/UpdateChartDefinitionArgs"
5774
5864
  },
5775
5865
  "drawing.create-graphics": {
5776
- "description": "Creates graphics out of geometries with the current symbols that are set on the DrawManager.",
5866
+ "description": "Creates graphics. In Web, creates graphics out of GeometryLike args, with the current symbols that are set on the DrawManager. In Mobile, creates graphics from the given CreateGraphicsArgs or CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol parameter is used, otherwise a default symbol is used.",
5777
5867
  "enum": [
5778
5868
  "drawing.create-graphics"
5779
5869
  ]
5780
5870
  },
5781
5871
  "drawing.create-graphics:input": {
5782
- "$ref": "#/definitions/GeometryLike"
5872
+ "anyOf": [
5873
+ {
5874
+ "$ref": "#/definitions/esri.Geometry"
5875
+ },
5876
+ {
5877
+ "$ref": "#/definitions/esri.Graphic"
5878
+ },
5879
+ {
5880
+ "$ref": "#/definitions/esri.FeatureSet"
5881
+ },
5882
+ {
5883
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
5884
+ },
5885
+ {
5886
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
5887
+ },
5888
+ {
5889
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
5890
+ },
5891
+ {
5892
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
5893
+ },
5894
+ {
5895
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
5896
+ },
5897
+ {
5898
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
5899
+ },
5900
+ {
5901
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
5902
+ },
5903
+ {
5904
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
5905
+ },
5906
+ {
5907
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
5908
+ },
5909
+ {
5910
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
5911
+ },
5912
+ {
5913
+ "$ref": "#/definitions/CreateGraphicsResult"
5914
+ },
5915
+ {
5916
+ "items": {
5917
+ "anyOf": [
5918
+ {
5919
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
5920
+ },
5921
+ {
5922
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
5923
+ }
5924
+ ]
5925
+ },
5926
+ "type": "array"
5927
+ },
5928
+ {
5929
+ "items": {
5930
+ "anyOf": [
5931
+ {
5932
+ "$ref": "#/definitions/esri.Graphic"
5933
+ },
5934
+ {
5935
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
5936
+ }
5937
+ ]
5938
+ },
5939
+ "type": "array"
5940
+ },
5941
+ {
5942
+ "items": {
5943
+ "anyOf": [
5944
+ {
5945
+ "$ref": "#/definitions/esri.Geometry"
5946
+ },
5947
+ {
5948
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
5949
+ },
5950
+ {
5951
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
5952
+ },
5953
+ {
5954
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
5955
+ },
5956
+ {
5957
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
5958
+ },
5959
+ {
5960
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
5961
+ }
5962
+ ]
5963
+ },
5964
+ "type": "array"
5965
+ },
5966
+ {
5967
+ "$ref": "#/definitions/CreateGraphicsArgs"
5968
+ },
5969
+ {
5970
+ "items": {
5971
+ "$ref": "#/definitions/CreateGraphicsArgs"
5972
+ },
5973
+ "type": "array"
5974
+ }
5975
+ ]
5783
5976
  },
5784
5977
  "drawing.create-graphics:output": {
5785
5978
  "$ref": "#/definitions/CreateGraphicsResult"
@@ -15204,13 +15397,42 @@
15204
15397
  "$ref": "#/definitions/AddLayersArgs"
15205
15398
  },
15206
15399
  "map.add-markup": {
15207
- "description": "Adds markup to the map(s).",
15400
+ "description": "Adds markup to the map(s). In Web, uses GraphicsLike args. In Mobile, uses AddMarkupArgs or some GraphicsLike args.",
15208
15401
  "enum": [
15209
15402
  "map.add-markup"
15210
15403
  ]
15211
15404
  },
15212
15405
  "map.add-markup:input": {
15213
- "$ref": "#/definitions/GraphicsLike"
15406
+ "anyOf": [
15407
+ {
15408
+ "$ref": "#/definitions/esri.Graphic"
15409
+ },
15410
+ {
15411
+ "$ref": "#/definitions/esri.FeatureSet"
15412
+ },
15413
+ {
15414
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
15415
+ },
15416
+ {
15417
+ "$ref": "#/definitions/CreateGraphicsResult"
15418
+ },
15419
+ {
15420
+ "items": {
15421
+ "anyOf": [
15422
+ {
15423
+ "$ref": "#/definitions/esri.Graphic"
15424
+ },
15425
+ {
15426
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
15427
+ }
15428
+ ]
15429
+ },
15430
+ "type": "array"
15431
+ },
15432
+ {
15433
+ "$ref": "#/definitions/AddMarkupArgs"
15434
+ }
15435
+ ]
15214
15436
  },
15215
15437
  "map.apply-filter-effect": {
15216
15438
  "description": "Applies a Filter Effect to the map(s).",
@@ -390,7 +390,7 @@
390
390
  },
391
391
  "maps": {
392
392
  "$ref": "MapsLike",
393
- "description": "The map that the graphics were created on."
393
+ "description": "The map that the graphics were created on. Only available in Web."
394
394
  }
395
395
  },
396
396
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "48.7.1",
3
+ "version": "48.8.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 Geocortex Viewer Specification.
3
3
  */
4
- export declare const version = "48.7.1";
4
+ export declare const version = "48.8.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export const version = "48.7.1";
4
+ export const version = "48.8.0";