@vertigis/viewer-spec 43.5.0 → 45.1.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.
- package/messaging/Operation.d.ts +22 -0
- package/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/arcade.d.ts +100 -0
- package/messaging/registry/arcade.js +1 -0
- package/messaging/registry/geometry.d.ts +174 -7
- package/messaging/registry/geometry.js +1 -1
- package/messaging/registry/measurement.d.ts +7 -7
- package/messaging/registry/measurement.js +1 -1
- package/messaging/registry/sketching.d.ts +50 -3
- package/messaging/registry/sketching.js +1 -1
- package/messaging/schema/common-action.schema.json +1 -1
- package/messaging/schema/mobile-action.schema.json +429 -1
- package/messaging/schema/web-action.schema.json +145 -21
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -506,6 +506,69 @@
|
|
|
506
506
|
],
|
|
507
507
|
"type": "object"
|
|
508
508
|
},
|
|
509
|
+
"AddPartArgs": {
|
|
510
|
+
"additionalProperties": false,
|
|
511
|
+
"description": "Arguments for the geometry.add-part operation.",
|
|
512
|
+
"properties": {
|
|
513
|
+
"geometry": {
|
|
514
|
+
"anyOf": [
|
|
515
|
+
{
|
|
516
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
520
|
+
}
|
|
521
|
+
],
|
|
522
|
+
"description": "The starting geometry."
|
|
523
|
+
},
|
|
524
|
+
"part": {
|
|
525
|
+
"description": "The new part to be added to 'geometry'.",
|
|
526
|
+
"items": {
|
|
527
|
+
"$ref": "#/definitions/esri.Point"
|
|
528
|
+
},
|
|
529
|
+
"type": "array"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"required": [
|
|
533
|
+
"geometry",
|
|
534
|
+
"part"
|
|
535
|
+
],
|
|
536
|
+
"type": "object"
|
|
537
|
+
},
|
|
538
|
+
"AddPointArgs": {
|
|
539
|
+
"additionalProperties": false,
|
|
540
|
+
"description": "Arguments for the geometry.add-point operation.",
|
|
541
|
+
"properties": {
|
|
542
|
+
"geometry": {
|
|
543
|
+
"anyOf": [
|
|
544
|
+
{
|
|
545
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
549
|
+
}
|
|
550
|
+
],
|
|
551
|
+
"description": "The starting geometry."
|
|
552
|
+
},
|
|
553
|
+
"newPoint": {
|
|
554
|
+
"$ref": "#/definitions/esri.Point",
|
|
555
|
+
"description": "The new point to be added to 'geometry'. The spatial reference must match 'geometry' or an error will be thrown."
|
|
556
|
+
},
|
|
557
|
+
"partIndex": {
|
|
558
|
+
"description": "The index of the part to which the point will be added. If null, the last part will be used.",
|
|
559
|
+
"type": "number"
|
|
560
|
+
},
|
|
561
|
+
"pointIndex": {
|
|
562
|
+
"description": "The index at which the point will be added. If null, the point will be added as the last point.",
|
|
563
|
+
"type": "number"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"required": [
|
|
567
|
+
"geometry",
|
|
568
|
+
"newPoint"
|
|
569
|
+
],
|
|
570
|
+
"type": "object"
|
|
571
|
+
},
|
|
509
572
|
"AlertCommandArgs": {
|
|
510
573
|
"additionalProperties": false,
|
|
511
574
|
"description": "Arguments for the 'ui.alert' command.",
|
|
@@ -549,6 +612,47 @@
|
|
|
549
612
|
],
|
|
550
613
|
"type": "object"
|
|
551
614
|
},
|
|
615
|
+
"CalculatePointArgs": {
|
|
616
|
+
"additionalProperties": false,
|
|
617
|
+
"description": "Arguments for the geometry.calculate-point operation.",
|
|
618
|
+
"properties": {
|
|
619
|
+
"angle": {
|
|
620
|
+
"description": "The angle, relative to the angle of the reference line, that will be used to calculate the new point. Positive angles are calculated clockwise from the angle of the reference line, negative angles are calculated counter-clockwise. Exactly one of 'offset' and 'angle' must be set.",
|
|
621
|
+
"type": "number"
|
|
622
|
+
},
|
|
623
|
+
"distance": {
|
|
624
|
+
"description": "The distance that will be used to calculate the new point. If using 'offset', this indicates the distance along the reference line. If using 'angle', this indicates the distance directly from the new point to the start point of the reference line. Cannot be negative.",
|
|
625
|
+
"type": "number"
|
|
626
|
+
},
|
|
627
|
+
"geodetic": {
|
|
628
|
+
"description": "Gets or sets a value indicating whether the distance calculations will be geodetic or planar. Defaults to true.",
|
|
629
|
+
"type": "boolean"
|
|
630
|
+
},
|
|
631
|
+
"geodeticCurveType": {
|
|
632
|
+
"$ref": "#/definitions/GeodeticCurveType",
|
|
633
|
+
"description": "Gets or sets the geodetic curve type used when calculating the new point. Only applies when 'geodetic' is true. Defaults to 'geodesic'."
|
|
634
|
+
},
|
|
635
|
+
"offset": {
|
|
636
|
+
"description": "The offset that will be used to calculate the new point. The 'offset' corresponds to the distance perpendicularly away from the reference line. Positive values will result in a point to the right of the reference line, negative values will be to the left. Exactly one of 'offset' and 'angle' must be set.",
|
|
637
|
+
"type": "number"
|
|
638
|
+
},
|
|
639
|
+
"referenceLine": {
|
|
640
|
+
"$ref": "#/definitions/ReferenceLine",
|
|
641
|
+
"description": "The reference line that will be used to calculate the new point."
|
|
642
|
+
},
|
|
643
|
+
"units": {
|
|
644
|
+
"$ref": "#/definitions/LengthUnitsMobile",
|
|
645
|
+
"description": "The units to be used for 'distance' and 'offset'. Defaults to the default units of the map."
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"required": [
|
|
649
|
+
"distance",
|
|
650
|
+
"geodeticCurveType",
|
|
651
|
+
"referenceLine",
|
|
652
|
+
"units"
|
|
653
|
+
],
|
|
654
|
+
"type": "object"
|
|
655
|
+
},
|
|
552
656
|
"CaptureGeometryArgs": {
|
|
553
657
|
"additionalProperties": false,
|
|
554
658
|
"description": "Arguments for the \"sketching.capture-geometry\" operation.",
|
|
@@ -1185,6 +1289,16 @@
|
|
|
1185
1289
|
],
|
|
1186
1290
|
"type": "object"
|
|
1187
1291
|
},
|
|
1292
|
+
"GeodeticCurveType": {
|
|
1293
|
+
"description": "The different types of curves that can be used for geodetic distance calculations.",
|
|
1294
|
+
"enum": [
|
|
1295
|
+
"geodesic",
|
|
1296
|
+
"great-elliptic",
|
|
1297
|
+
"loxodrome",
|
|
1298
|
+
"normal-section"
|
|
1299
|
+
],
|
|
1300
|
+
"type": "string"
|
|
1301
|
+
},
|
|
1188
1302
|
"GeolocateCurrentState": {
|
|
1189
1303
|
"additionalProperties": false,
|
|
1190
1304
|
"description": "Result for the \"geolocation.get-current-state\" operation.",
|
|
@@ -1592,6 +1706,30 @@
|
|
|
1592
1706
|
],
|
|
1593
1707
|
"type": "object"
|
|
1594
1708
|
},
|
|
1709
|
+
"LengthUnitsMobile": {
|
|
1710
|
+
"description": "The units for distance supported by Mobile.",
|
|
1711
|
+
"enum": [
|
|
1712
|
+
"centimeters",
|
|
1713
|
+
"cm",
|
|
1714
|
+
"feet",
|
|
1715
|
+
"ft",
|
|
1716
|
+
"in",
|
|
1717
|
+
"inches",
|
|
1718
|
+
"kilometers",
|
|
1719
|
+
"km",
|
|
1720
|
+
"m",
|
|
1721
|
+
"meters",
|
|
1722
|
+
"mi",
|
|
1723
|
+
"miles",
|
|
1724
|
+
"millimeters",
|
|
1725
|
+
"mm",
|
|
1726
|
+
"nautical-miles",
|
|
1727
|
+
"nm",
|
|
1728
|
+
"yards",
|
|
1729
|
+
"yd"
|
|
1730
|
+
],
|
|
1731
|
+
"type": "string"
|
|
1732
|
+
},
|
|
1595
1733
|
"MapExtensionArgs": {
|
|
1596
1734
|
"additionalProperties": false,
|
|
1597
1735
|
"description": "One or more map extensions.",
|
|
@@ -1850,6 +1988,64 @@
|
|
|
1850
1988
|
],
|
|
1851
1989
|
"type": "object"
|
|
1852
1990
|
},
|
|
1991
|
+
"ReferenceLine": {
|
|
1992
|
+
"additionalProperties": false,
|
|
1993
|
+
"description": "A reference line used by the geometry.get-point operation.",
|
|
1994
|
+
"properties": {
|
|
1995
|
+
"geometry": {
|
|
1996
|
+
"anyOf": [
|
|
1997
|
+
{
|
|
1998
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
2002
|
+
}
|
|
2003
|
+
],
|
|
2004
|
+
"description": "The geometry that contains the reference line."
|
|
2005
|
+
},
|
|
2006
|
+
"partIndex": {
|
|
2007
|
+
"description": "The index of the part in 'geometry' that contains the reference line. If null, the last part will be used.",
|
|
2008
|
+
"type": "number"
|
|
2009
|
+
},
|
|
2010
|
+
"segmentIndex": {
|
|
2011
|
+
"description": "The index of the segment that will be used as the reference line. If null, the last segment will be used.",
|
|
2012
|
+
"type": "number"
|
|
2013
|
+
}
|
|
2014
|
+
},
|
|
2015
|
+
"required": [
|
|
2016
|
+
"geometry"
|
|
2017
|
+
],
|
|
2018
|
+
"type": "object"
|
|
2019
|
+
},
|
|
2020
|
+
"RemovePointArgs": {
|
|
2021
|
+
"additionalProperties": false,
|
|
2022
|
+
"description": "Arguments for the geometry.remove-point operation.",
|
|
2023
|
+
"properties": {
|
|
2024
|
+
"geometry": {
|
|
2025
|
+
"anyOf": [
|
|
2026
|
+
{
|
|
2027
|
+
"$ref": "#/definitions/esri.Polygon"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"$ref": "#/definitions/esri.Polyline"
|
|
2031
|
+
}
|
|
2032
|
+
],
|
|
2033
|
+
"description": "The starting geometry."
|
|
2034
|
+
},
|
|
2035
|
+
"partIndex": {
|
|
2036
|
+
"description": "The index of the part from which the point will be removed. If null, the last part will be used.",
|
|
2037
|
+
"type": "number"
|
|
2038
|
+
},
|
|
2039
|
+
"pointIndex": {
|
|
2040
|
+
"description": "The index of the point to be removed. If null, the last point wil be removed.",
|
|
2041
|
+
"type": "number"
|
|
2042
|
+
}
|
|
2043
|
+
},
|
|
2044
|
+
"required": [
|
|
2045
|
+
"geometry"
|
|
2046
|
+
],
|
|
2047
|
+
"type": "object"
|
|
2048
|
+
},
|
|
1853
2049
|
"ReplaceMapArgs": {
|
|
1854
2050
|
"additionalProperties": false,
|
|
1855
2051
|
"description": "Arguments for the \"map.replace*\" operations.",
|
|
@@ -2287,6 +2483,21 @@
|
|
|
2287
2483
|
],
|
|
2288
2484
|
"type": "object"
|
|
2289
2485
|
},
|
|
2486
|
+
"StartStreamingArgs": {
|
|
2487
|
+
"additionalProperties": false,
|
|
2488
|
+
"description": "Arguments for the \"sketching.start-streaming\" command.",
|
|
2489
|
+
"properties": {
|
|
2490
|
+
"interval": {
|
|
2491
|
+
"description": "An optional value indicating, in seconds, how often points should be recorded.",
|
|
2492
|
+
"type": "number"
|
|
2493
|
+
},
|
|
2494
|
+
"maps": {
|
|
2495
|
+
"$ref": "MapsLike",
|
|
2496
|
+
"description": "Map(s) to use for the command/operation."
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2499
|
+
"type": "object"
|
|
2500
|
+
},
|
|
2290
2501
|
"StopGeometryEditArgs": {
|
|
2291
2502
|
"additionalProperties": false,
|
|
2292
2503
|
"description": "Arguments for the \"sketching.stop\" operation.",
|
|
@@ -2681,9 +2892,15 @@
|
|
|
2681
2892
|
"esri.PointSymbol3D": {
|
|
2682
2893
|
"$ref": "esri/symbols/PointSymbol3D"
|
|
2683
2894
|
},
|
|
2895
|
+
"esri.Polygon": {
|
|
2896
|
+
"$ref": "esri/geometry/Polygon"
|
|
2897
|
+
},
|
|
2684
2898
|
"esri.PolygonSymbol3D": {
|
|
2685
2899
|
"$ref": "esri/symbols/PolygonSymbol3D"
|
|
2686
2900
|
},
|
|
2901
|
+
"esri.Polyline": {
|
|
2902
|
+
"$ref": "esri/geometry/Polyline"
|
|
2903
|
+
},
|
|
2687
2904
|
"esri.PopupTemplate": {
|
|
2688
2905
|
"$ref": "esri/PopupTemplate"
|
|
2689
2906
|
},
|
|
@@ -11592,6 +11809,54 @@
|
|
|
11592
11809
|
}
|
|
11593
11810
|
]
|
|
11594
11811
|
},
|
|
11812
|
+
"geometry.add-part": {
|
|
11813
|
+
"description": "Adds a part to a given geometry.",
|
|
11814
|
+
"enum": [
|
|
11815
|
+
"geometry.add-part"
|
|
11816
|
+
]
|
|
11817
|
+
},
|
|
11818
|
+
"geometry.add-part:input": {
|
|
11819
|
+
"$ref": "#/definitions/AddPartArgs"
|
|
11820
|
+
},
|
|
11821
|
+
"geometry.add-part:output": {
|
|
11822
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
11823
|
+
},
|
|
11824
|
+
"geometry.add-point": {
|
|
11825
|
+
"description": "Adds a point to a given geometry.",
|
|
11826
|
+
"enum": [
|
|
11827
|
+
"geometry.add-point"
|
|
11828
|
+
]
|
|
11829
|
+
},
|
|
11830
|
+
"geometry.add-point:input": {
|
|
11831
|
+
"$ref": "#/definitions/AddPointArgs"
|
|
11832
|
+
},
|
|
11833
|
+
"geometry.add-point:output": {
|
|
11834
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
11835
|
+
},
|
|
11836
|
+
"geometry.calculate-point": {
|
|
11837
|
+
"description": "Calculates a point relative to a given reference line.",
|
|
11838
|
+
"enum": [
|
|
11839
|
+
"geometry.calculate-point"
|
|
11840
|
+
]
|
|
11841
|
+
},
|
|
11842
|
+
"geometry.calculate-point:input": {
|
|
11843
|
+
"$ref": "#/definitions/CalculatePointArgs"
|
|
11844
|
+
},
|
|
11845
|
+
"geometry.calculate-point:output": {
|
|
11846
|
+
"$ref": "#/definitions/esri.Point"
|
|
11847
|
+
},
|
|
11848
|
+
"geometry.remove-point": {
|
|
11849
|
+
"description": "Removes a point from a given geometry.",
|
|
11850
|
+
"enum": [
|
|
11851
|
+
"geometry.remove-point"
|
|
11852
|
+
]
|
|
11853
|
+
},
|
|
11854
|
+
"geometry.remove-point:input": {
|
|
11855
|
+
"$ref": "#/definitions/RemovePointArgs"
|
|
11856
|
+
},
|
|
11857
|
+
"geometry.remove-point:output": {
|
|
11858
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
11859
|
+
},
|
|
11595
11860
|
"highlights.add": {
|
|
11596
11861
|
"description": "Applies highlighting to one or more features.",
|
|
11597
11862
|
"enum": [
|
|
@@ -12693,7 +12958,7 @@
|
|
|
12693
12958
|
"type": "string"
|
|
12694
12959
|
},
|
|
12695
12960
|
"sketching.add-node-to-geometry": {
|
|
12696
|
-
"description": "Adds a point to a given polyline or polygon geometry. Returns the resulting geometry.",
|
|
12961
|
+
"description": "Adds a point to a given polyline or polygon geometry. Returns the resulting geometry. Deprecated in Mobile, use geometry.add-point instead.",
|
|
12697
12962
|
"enum": [
|
|
12698
12963
|
"sketching.add-node-to-geometry"
|
|
12699
12964
|
]
|
|
@@ -12755,6 +13020,18 @@
|
|
|
12755
13020
|
"sketching.edit-geometry:output": {
|
|
12756
13021
|
"$ref": "#/definitions/EditGeometryResult"
|
|
12757
13022
|
},
|
|
13023
|
+
"sketching.is-streaming": {
|
|
13024
|
+
"description": "Checks whether streaming is active.",
|
|
13025
|
+
"enum": [
|
|
13026
|
+
"sketching.is-streaming"
|
|
13027
|
+
]
|
|
13028
|
+
},
|
|
13029
|
+
"sketching.is-streaming:input": {
|
|
13030
|
+
"$ref": "#/definitions/HasMaps"
|
|
13031
|
+
},
|
|
13032
|
+
"sketching.is-streaming:output": {
|
|
13033
|
+
"type": "boolean"
|
|
13034
|
+
},
|
|
12758
13035
|
"sketching.redo": {
|
|
12759
13036
|
"description": "Redoes the last undone edit while editing a geometry.",
|
|
12760
13037
|
"enum": [
|
|
@@ -12791,12 +13068,30 @@
|
|
|
12791
13068
|
"sketching.set-point-at-current-location:input": {
|
|
12792
13069
|
"$ref": "#/definitions/HasMaps"
|
|
12793
13070
|
},
|
|
13071
|
+
"sketching.start-streaming": {
|
|
13072
|
+
"description": "Starts streaming: recording your location at regular intervals and adding the collected points to the currently active geometry editor.",
|
|
13073
|
+
"enum": [
|
|
13074
|
+
"sketching.start-streaming"
|
|
13075
|
+
]
|
|
13076
|
+
},
|
|
13077
|
+
"sketching.start-streaming:input": {
|
|
13078
|
+
"$ref": "#/definitions/StartStreamingArgs"
|
|
13079
|
+
},
|
|
12794
13080
|
"sketching.stop": {
|
|
12795
13081
|
"description": "Stops geometry capturing or editing on a given map. Returns the current geometry. If validateGeometry parameter is true and geometry is invalid, returns null.",
|
|
12796
13082
|
"enum": [
|
|
12797
13083
|
"sketching.stop"
|
|
12798
13084
|
]
|
|
12799
13085
|
},
|
|
13086
|
+
"sketching.stop-streaming": {
|
|
13087
|
+
"description": "Stops streaming.",
|
|
13088
|
+
"enum": [
|
|
13089
|
+
"sketching.stop-streaming"
|
|
13090
|
+
]
|
|
13091
|
+
},
|
|
13092
|
+
"sketching.stop-streaming:input": {
|
|
13093
|
+
"$ref": "#/definitions/HasMaps"
|
|
13094
|
+
},
|
|
12800
13095
|
"sketching.stop:input": {
|
|
12801
13096
|
"anyOf": [
|
|
12802
13097
|
{
|
|
@@ -14359,6 +14654,38 @@
|
|
|
14359
14654
|
],
|
|
14360
14655
|
"type": "object"
|
|
14361
14656
|
},
|
|
14657
|
+
{
|
|
14658
|
+
"additionalProperties": false,
|
|
14659
|
+
"properties": {
|
|
14660
|
+
"arguments": {
|
|
14661
|
+
"$ref": "#/definitions/sketching.start-streaming:input"
|
|
14662
|
+
},
|
|
14663
|
+
"name": {
|
|
14664
|
+
"$ref": "#/definitions/sketching.start-streaming"
|
|
14665
|
+
}
|
|
14666
|
+
},
|
|
14667
|
+
"required": [
|
|
14668
|
+
"name",
|
|
14669
|
+
"arguments"
|
|
14670
|
+
],
|
|
14671
|
+
"type": "object"
|
|
14672
|
+
},
|
|
14673
|
+
{
|
|
14674
|
+
"additionalProperties": false,
|
|
14675
|
+
"properties": {
|
|
14676
|
+
"arguments": {
|
|
14677
|
+
"$ref": "#/definitions/sketching.stop-streaming:input"
|
|
14678
|
+
},
|
|
14679
|
+
"name": {
|
|
14680
|
+
"$ref": "#/definitions/sketching.stop-streaming"
|
|
14681
|
+
}
|
|
14682
|
+
},
|
|
14683
|
+
"required": [
|
|
14684
|
+
"name",
|
|
14685
|
+
"arguments"
|
|
14686
|
+
],
|
|
14687
|
+
"type": "object"
|
|
14688
|
+
},
|
|
14362
14689
|
{
|
|
14363
14690
|
"additionalProperties": false,
|
|
14364
14691
|
"properties": {
|
|
@@ -14877,6 +15204,12 @@
|
|
|
14877
15204
|
{
|
|
14878
15205
|
"$ref": "#/definitions/sketching.set-point-at-current-location"
|
|
14879
15206
|
},
|
|
15207
|
+
{
|
|
15208
|
+
"$ref": "#/definitions/sketching.start-streaming"
|
|
15209
|
+
},
|
|
15210
|
+
{
|
|
15211
|
+
"$ref": "#/definitions/sketching.stop-streaming"
|
|
15212
|
+
},
|
|
14880
15213
|
{
|
|
14881
15214
|
"$ref": "#/definitions/sketching.undo"
|
|
14882
15215
|
},
|
|
@@ -15015,6 +15348,70 @@
|
|
|
15015
15348
|
],
|
|
15016
15349
|
"type": "object"
|
|
15017
15350
|
},
|
|
15351
|
+
{
|
|
15352
|
+
"additionalProperties": false,
|
|
15353
|
+
"properties": {
|
|
15354
|
+
"arguments": {
|
|
15355
|
+
"$ref": "#/definitions/geometry.add-part:input"
|
|
15356
|
+
},
|
|
15357
|
+
"name": {
|
|
15358
|
+
"$ref": "#/definitions/geometry.add-part"
|
|
15359
|
+
}
|
|
15360
|
+
},
|
|
15361
|
+
"required": [
|
|
15362
|
+
"name",
|
|
15363
|
+
"arguments"
|
|
15364
|
+
],
|
|
15365
|
+
"type": "object"
|
|
15366
|
+
},
|
|
15367
|
+
{
|
|
15368
|
+
"additionalProperties": false,
|
|
15369
|
+
"properties": {
|
|
15370
|
+
"arguments": {
|
|
15371
|
+
"$ref": "#/definitions/geometry.add-point:input"
|
|
15372
|
+
},
|
|
15373
|
+
"name": {
|
|
15374
|
+
"$ref": "#/definitions/geometry.add-point"
|
|
15375
|
+
}
|
|
15376
|
+
},
|
|
15377
|
+
"required": [
|
|
15378
|
+
"name",
|
|
15379
|
+
"arguments"
|
|
15380
|
+
],
|
|
15381
|
+
"type": "object"
|
|
15382
|
+
},
|
|
15383
|
+
{
|
|
15384
|
+
"additionalProperties": false,
|
|
15385
|
+
"properties": {
|
|
15386
|
+
"arguments": {
|
|
15387
|
+
"$ref": "#/definitions/geometry.calculate-point:input"
|
|
15388
|
+
},
|
|
15389
|
+
"name": {
|
|
15390
|
+
"$ref": "#/definitions/geometry.calculate-point"
|
|
15391
|
+
}
|
|
15392
|
+
},
|
|
15393
|
+
"required": [
|
|
15394
|
+
"name",
|
|
15395
|
+
"arguments"
|
|
15396
|
+
],
|
|
15397
|
+
"type": "object"
|
|
15398
|
+
},
|
|
15399
|
+
{
|
|
15400
|
+
"additionalProperties": false,
|
|
15401
|
+
"properties": {
|
|
15402
|
+
"arguments": {
|
|
15403
|
+
"$ref": "#/definitions/geometry.remove-point:input"
|
|
15404
|
+
},
|
|
15405
|
+
"name": {
|
|
15406
|
+
"$ref": "#/definitions/geometry.remove-point"
|
|
15407
|
+
}
|
|
15408
|
+
},
|
|
15409
|
+
"required": [
|
|
15410
|
+
"name",
|
|
15411
|
+
"arguments"
|
|
15412
|
+
],
|
|
15413
|
+
"type": "object"
|
|
15414
|
+
},
|
|
15018
15415
|
{
|
|
15019
15416
|
"additionalProperties": false,
|
|
15020
15417
|
"properties": {
|
|
@@ -15431,6 +15828,22 @@
|
|
|
15431
15828
|
],
|
|
15432
15829
|
"type": "object"
|
|
15433
15830
|
},
|
|
15831
|
+
{
|
|
15832
|
+
"additionalProperties": false,
|
|
15833
|
+
"properties": {
|
|
15834
|
+
"arguments": {
|
|
15835
|
+
"$ref": "#/definitions/sketching.is-streaming:input"
|
|
15836
|
+
},
|
|
15837
|
+
"name": {
|
|
15838
|
+
"$ref": "#/definitions/sketching.is-streaming"
|
|
15839
|
+
}
|
|
15840
|
+
},
|
|
15841
|
+
"required": [
|
|
15842
|
+
"name",
|
|
15843
|
+
"arguments"
|
|
15844
|
+
],
|
|
15845
|
+
"type": "object"
|
|
15846
|
+
},
|
|
15434
15847
|
{
|
|
15435
15848
|
"additionalProperties": false,
|
|
15436
15849
|
"properties": {
|
|
@@ -15519,6 +15932,18 @@
|
|
|
15519
15932
|
{
|
|
15520
15933
|
"$ref": "#/definitions/geolocation.get-position"
|
|
15521
15934
|
},
|
|
15935
|
+
{
|
|
15936
|
+
"$ref": "#/definitions/geometry.add-part"
|
|
15937
|
+
},
|
|
15938
|
+
{
|
|
15939
|
+
"$ref": "#/definitions/geometry.add-point"
|
|
15940
|
+
},
|
|
15941
|
+
{
|
|
15942
|
+
"$ref": "#/definitions/geometry.calculate-point"
|
|
15943
|
+
},
|
|
15944
|
+
{
|
|
15945
|
+
"$ref": "#/definitions/geometry.remove-point"
|
|
15946
|
+
},
|
|
15522
15947
|
{
|
|
15523
15948
|
"$ref": "#/definitions/map.export-image"
|
|
15524
15949
|
},
|
|
@@ -15603,6 +16028,9 @@
|
|
|
15603
16028
|
{
|
|
15604
16029
|
"$ref": "#/definitions/sketching.edit-geometry"
|
|
15605
16030
|
},
|
|
16031
|
+
{
|
|
16032
|
+
"$ref": "#/definitions/sketching.is-streaming"
|
|
16033
|
+
},
|
|
15606
16034
|
{
|
|
15607
16035
|
"$ref": "#/definitions/sketching.stop"
|
|
15608
16036
|
},
|