@vertigis/viewer-spec 49.9.0 → 50.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.
Files changed (66) hide show
  1. package/README.md +1 -1
  2. package/analytics/MobileAction.d.ts +102 -0
  3. package/analytics/MobileAction.js +1 -0
  4. package/app-config/mobile/BasemapModelProperties.d.ts +1 -1
  5. package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -2
  6. package/app-config/schema/mobile-app-config.schema.json +1 -1
  7. package/app-config/schema/web-app-config.schema.json +1 -1
  8. package/app-config/web/ResultsModelProperties.d.ts +1 -1
  9. package/app-config/web/VertigisWebModelProperties.d.ts +2 -3
  10. package/docs/presentation.md +30 -23
  11. package/messaging/DotNetTypes.d.ts +4 -0
  12. package/messaging/DotNetTypes.js +1 -0
  13. package/messaging/common.d.ts +53 -2
  14. package/messaging/common.js +1 -1
  15. package/messaging/mobile.d.ts +1 -8
  16. package/messaging/registry/Events.d.ts +6 -0
  17. package/messaging/registry/Events.js +1 -1
  18. package/messaging/registry/app.d.ts +32 -32
  19. package/messaging/registry/app.js +1 -1
  20. package/messaging/registry/auth.d.ts +44 -11
  21. package/messaging/registry/auth.js +1 -1
  22. package/messaging/registry/basemap.d.ts +19 -1
  23. package/messaging/registry/basemap.js +1 -1
  24. package/messaging/registry/bookmark.d.ts +41 -0
  25. package/messaging/registry/bookmark.js +1 -0
  26. package/messaging/registry/device.d.ts +12 -0
  27. package/messaging/registry/device.js +1 -1
  28. package/messaging/registry/file.d.ts +10 -0
  29. package/messaging/registry/file.js +1 -1
  30. package/messaging/registry/geolocation.d.ts +163 -7
  31. package/messaging/registry/geolocation.js +1 -1
  32. package/messaging/registry/geometry-toolbar.d.ts +5 -5
  33. package/messaging/registry/highlights.d.ts +6 -7
  34. package/messaging/registry/map.d.ts +85 -14
  35. package/messaging/registry/map.js +1 -1
  36. package/messaging/registry/measurement.d.ts +36 -4
  37. package/messaging/registry/measurement.js +1 -1
  38. package/messaging/registry/offline.d.ts +106 -9
  39. package/messaging/registry/offline.js +1 -1
  40. package/messaging/registry/panel.d.ts +8 -1
  41. package/messaging/registry/panel.js +1 -1
  42. package/messaging/registry/photos.js +1 -1
  43. package/messaging/registry/results.d.ts +40 -0
  44. package/messaging/registry/results.js +1 -1
  45. package/messaging/registry/search.d.ts +31 -7
  46. package/messaging/registry/search.js +1 -1
  47. package/messaging/registry/settings.d.ts +40 -0
  48. package/messaging/registry/settings.js +1 -0
  49. package/messaging/registry/shortcut.d.ts +40 -0
  50. package/messaging/registry/shortcut.js +1 -0
  51. package/messaging/registry/sketching.d.ts +4 -4
  52. package/messaging/registry/system.d.ts +21 -0
  53. package/messaging/registry/system.js +1 -1
  54. package/messaging/registry/tasks.d.ts +26 -16
  55. package/messaging/registry/tasks.js +1 -1
  56. package/messaging/registry/ui.d.ts +4 -4
  57. package/messaging/registry/workflow.d.ts +6 -9
  58. package/messaging/schema/common-action.schema.json +43 -38
  59. package/messaging/schema/common-event.schema.json +193 -11
  60. package/messaging/schema/mobile-action.schema.json +101 -79
  61. package/messaging/schema/mobile-event.schema.json +1186 -98
  62. package/messaging/schema/web-action.schema.json +67 -62
  63. package/messaging/schema/web-event.schema.json +130 -20
  64. package/package.json +1 -1
  65. package/version.d.ts +1 -1
  66. package/version.js +1 -1
@@ -60,6 +60,9 @@
60
60
  },
61
61
  "geometry": {
62
62
  "anyOf": [
63
+ {
64
+ "$ref": "#/definitions/esri.Geometry"
65
+ },
63
66
  {
64
67
  "$ref": "#/definitions/esri.rest-api.Point.Point"
65
68
  },
@@ -74,9 +77,6 @@
74
77
  },
75
78
  {
76
79
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
77
- },
78
- {
79
- "$ref": "#/definitions/esri.Geometry"
80
80
  }
81
81
  ],
82
82
  "description": "The feature's geometry."
@@ -806,7 +806,7 @@
806
806
  },
807
807
  "symbol": {
808
808
  "$ref": "#/definitions/esri.Symbol",
809
- "description": "The symbol that was used. Unavailable in Geocortex Web Viewer."
809
+ "description": "The symbol that was used. Unavailable in VertiGIS Studio Web."
810
810
  }
811
811
  },
812
812
  "required": [
@@ -1741,6 +1741,9 @@
1741
1741
  },
1742
1742
  "type": "array"
1743
1743
  },
1744
+ {
1745
+ "$ref": "#/definitions/esri.Geometry"
1746
+ },
1744
1747
  {
1745
1748
  "$ref": "#/definitions/esri.rest-api.Feature.Feature"
1746
1749
  },
@@ -1775,12 +1778,12 @@
1775
1778
  {
1776
1779
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
1777
1780
  },
1778
- {
1779
- "$ref": "#/definitions/esri.Geometry"
1780
- },
1781
1781
  {
1782
1782
  "items": {
1783
1783
  "anyOf": [
1784
+ {
1785
+ "$ref": "#/definitions/esri.Geometry"
1786
+ },
1784
1787
  {
1785
1788
  "$ref": "#/definitions/esri.rest-api.Point.Point"
1786
1789
  },
@@ -1795,9 +1798,6 @@
1795
1798
  },
1796
1799
  {
1797
1800
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
1798
- },
1799
- {
1800
- "$ref": "#/definitions/esri.Geometry"
1801
1801
  }
1802
1802
  ]
1803
1803
  },
@@ -1808,37 +1808,37 @@
1808
1808
  },
1809
1809
  "GeometryModeArgs": {
1810
1810
  "additionalProperties": false,
1811
- "description": "Arguments for the measurement events. Only available in the Geocortex Mobile Viewer.",
1811
+ "description": "Arguments for the measurement events. Only available in VertiGIS Studio Mobile.",
1812
1812
  "properties": {
1813
1813
  "geometryMode": {
1814
1814
  "$ref": "GeometryMode",
1815
1815
  "description": "The geometry mode that is used to perform operations."
1816
1816
  },
1817
1817
  "maps": {
1818
- "$ref": "MapsLike"
1818
+ "$ref": "MapsLike",
1819
+ "description": "Map(s) to use for the command/operation."
1819
1820
  }
1820
1821
  },
1821
1822
  "required": [
1822
- "geometryMode",
1823
- "maps"
1823
+ "geometryMode"
1824
1824
  ],
1825
1825
  "type": "object"
1826
1826
  },
1827
1827
  "GeometryToolbarArgs": {
1828
1828
  "additionalProperties": false,
1829
- "description": "Arguments for the Geometry Toolbar show command. Only available in the Geocortex Mobile Viewer.",
1829
+ "description": "Arguments for the Geometry Toolbar show command. Only available in VertiGIS Studio Mobile.",
1830
1830
  "properties": {
1831
1831
  "isAreaToggleable": {
1832
1832
  "description": "Whether the toolbar will allow users to toggle between area and line drawing modes. Defaults to true.",
1833
1833
  "type": "boolean"
1834
1834
  },
1835
1835
  "maps": {
1836
- "$ref": "MapsLike"
1836
+ "$ref": "MapsLike",
1837
+ "description": "Map(s) to use for the command/operation."
1837
1838
  }
1838
1839
  },
1839
1840
  "required": [
1840
- "isAreaToggleable",
1841
- "maps"
1841
+ "isAreaToggleable"
1842
1842
  ],
1843
1843
  "type": "object"
1844
1844
  },
@@ -1875,6 +1875,10 @@
1875
1875
  "additionalProperties": false,
1876
1876
  "description": "A geolocation source.",
1877
1877
  "properties": {
1878
+ "deviceFullName": {
1879
+ "description": "Full name of the GNSS device.",
1880
+ "type": "string"
1881
+ },
1878
1882
  "deviceName": {
1879
1883
  "description": "Name of the GNSS device.",
1880
1884
  "type": "string"
@@ -1889,6 +1893,7 @@
1889
1893
  }
1890
1894
  },
1891
1895
  "required": [
1896
+ "deviceFullName",
1892
1897
  "deviceName",
1893
1898
  "deviceType",
1894
1899
  "settings"
@@ -1945,6 +1950,21 @@
1945
1950
  },
1946
1951
  "type": "object"
1947
1952
  },
1953
+ "HasMapsAndFeatures": {
1954
+ "additionalProperties": false,
1955
+ "description": "Defines an object that has a `maps` property and a `features` property.",
1956
+ "properties": {
1957
+ "features": {
1958
+ "$ref": "#/definitions/FeaturesLike",
1959
+ "description": "Features to use for the command/operation."
1960
+ },
1961
+ "maps": {
1962
+ "$ref": "MapsLike",
1963
+ "description": "Map(s) to use for the command/operation."
1964
+ }
1965
+ },
1966
+ "type": "object"
1967
+ },
1948
1968
  "HasUITarget": {
1949
1969
  "additionalProperties": false,
1950
1970
  "description": "An object with arguments for a command or operation that can display temporary UI.",
@@ -2010,7 +2030,7 @@
2010
2030
  "description": "The geometry to identify by."
2011
2031
  },
2012
2032
  "layersInScaleRangeOnly": {
2013
- "description": "When \"map\" is specified, this determines whether to include only layers that are in visible scale range. The default is false. Not supported in Geocortex Mobile Viewer.",
2033
+ "description": "When \"map\" is specified, this determines whether to include only layers that are in visible scale range. The default is false. Not supported in VertiGIS Studio Mobile.",
2014
2034
  "type": "boolean"
2015
2035
  },
2016
2036
  "maps": {
@@ -2018,38 +2038,38 @@
2018
2038
  "description": "The map to identify. Can be used instead of or in addition to \"sources\". Layers on the map will be used as sources according to the \"layersInScaleRangeOnly\" and \"visibleLayersOnly\" flags."
2019
2039
  },
2020
2040
  "maxAllowableOffset": {
2021
- "description": "The maximum allowable offset used for generalizing returned geometries. Not supported in Geocortex Mobile Viewer.",
2041
+ "description": "The maximum allowable offset used for generalizing returned geometries. Not supported in VertiGIS Studio Mobile.",
2022
2042
  "type": "number"
2023
2043
  },
2024
2044
  "maxResults": {
2025
- "description": "The maximum number of results to return per source. Not supported in Geocortex Mobile Viewer.",
2045
+ "description": "The maximum number of results to return per source. Not supported in VertiGIS Studio Mobile.",
2026
2046
  "type": "number"
2027
2047
  },
2028
2048
  "outSpatialReference": {
2029
2049
  "$ref": "#/definitions/esri.SpatialReference",
2030
- "description": "The spatial reference for the returned geometry. Not supported in Geocortex Mobile Viewer."
2050
+ "description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
2031
2051
  },
2032
2052
  "pointTolerance": {
2033
- "description": "A tolerance value to use for point identify operations. All features falling within a buffer of this many logical pixels around the point will be returned by the identify operation. The default is 10. Not supported in Geocortex Mobile Viewer.",
2053
+ "description": "A tolerance value to use for point identify operations. All features falling within a buffer of this many logical pixels around the point will be returned by the identify operation. The default is 10. Not supported in VertiGIS Studio Mobile.",
2034
2054
  "type": "number"
2035
2055
  },
2036
2056
  "polyTolerance": {
2037
- "description": "A tolerance value to use for polyline and polygon identify operations. All features falling within a buffer of this many logical pixels around the geometry will be returned by the identify operation. The default is 2. Not supported in Geocortex Mobile Viewer.",
2057
+ "description": "A tolerance value to use for polyline and polygon identify operations. All features falling within a buffer of this many logical pixels around the geometry will be returned by the identify operation. The default is 2. Not supported in VertiGIS Studio Mobile.",
2038
2058
  "type": "number"
2039
2059
  },
2040
2060
  "returnGeometry": {
2041
- "description": "Whether geometry for features should be returned. Not supported in Geocortex Mobile Viewer.",
2061
+ "description": "Whether geometry for features should be returned. Not supported in VertiGIS Studio Mobile.",
2042
2062
  "type": "boolean"
2043
2063
  },
2044
2064
  "sources": {
2045
- "description": "The feature sources to identify. Can be used instead of or in addition to \"maps\". Not supported in Geocortex Mobile Viewer (use \"maps\").",
2065
+ "description": "The feature sources to identify. Can be used instead of or in addition to \"maps\". Not supported in VertiGIS Studio Mobile (use \"maps\").",
2046
2066
  "items": {
2047
2067
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
2048
2068
  },
2049
2069
  "type": "array"
2050
2070
  },
2051
2071
  "visibleLayersOnly": {
2052
- "description": "When \"map\" is specified, this determines whether to include only visible layers. The default is true. Not supported in Geocortex Mobile Viewer.",
2072
+ "description": "When \"map\" is specified, this determines whether to include only visible layers. The default is true. Not supported in VertiGIS Studio Mobile.",
2053
2073
  "type": "boolean"
2054
2074
  }
2055
2075
  },
@@ -2184,19 +2204,6 @@
2184
2204
  ],
2185
2205
  "type": "string"
2186
2206
  },
2187
- "MapExtensionArgs": {
2188
- "additionalProperties": false,
2189
- "description": "One or more map extensions.",
2190
- "properties": {
2191
- "maps": {
2192
- "$ref": "MapsLike"
2193
- }
2194
- },
2195
- "required": [
2196
- "maps"
2197
- ],
2198
- "type": "object"
2199
- },
2200
2207
  "MapsLike": {
2201
2208
  "anyOf": [
2202
2209
  {
@@ -2328,10 +2335,18 @@
2328
2335
  "description": "A value indicating whether or not the operation was successful.",
2329
2336
  "type": "boolean"
2330
2337
  },
2338
+ "syncLayerErrors": {
2339
+ "$ref": "System.Collections.Generic.IDictionary_4",
2340
+ "description": "A dictionary of layer errors that occurred during a sync (submit edits or update) operation."
2341
+ },
2331
2342
  "syncLayerResults": {
2332
2343
  "$ref": "System.Collections.Generic.IDictionary_2",
2333
2344
  "description": "A dictionary of layer sync results that occurred while submitting edits on or updating a map area."
2334
2345
  },
2346
+ "syncTableErrors": {
2347
+ "$ref": "System.Collections.Generic.IDictionary_1",
2348
+ "description": "A dictionary of table errors that occurred during a sync (submit edits or update) operation."
2349
+ },
2335
2350
  "syncTableResults": {
2336
2351
  "$ref": "System.Collections.Generic.IDictionary_3",
2337
2352
  "description": "A dictionary of table sync results that occurred while submitting edits on or updating a map area."
@@ -2352,7 +2367,9 @@
2352
2367
  "errorCodeString",
2353
2368
  "errorMessage",
2354
2369
  "success",
2370
+ "syncLayerErrors",
2355
2371
  "syncLayerResults",
2372
+ "syncTableErrors",
2356
2373
  "syncTableResults",
2357
2374
  "warnings"
2358
2375
  ],
@@ -2724,7 +2741,7 @@
2724
2741
  },
2725
2742
  "SaveStorageDataArgs": {
2726
2743
  "additionalProperties": false,
2727
- "description": "Arguments for the app.set-persistent-data operations. Only available in the Geocortex Mobile Viewer.",
2744
+ "description": "Arguments for the app.set-persistent-data operations. Only available in VertiGIS Studio Mobile.",
2728
2745
  "properties": {
2729
2746
  "data": {
2730
2747
  "description": "The data to be stored."
@@ -2749,9 +2766,13 @@
2749
2766
  "description": "Arguments for search operations.",
2750
2767
  "properties": {
2751
2768
  "disableSearchAreaExpansion": {
2752
- "description": "By default the search area will be expanded to try and return the specified maxResults. Set to true to disable this behavior. Not supported in Geocortex Mobile Viewer.",
2769
+ "description": "By default the search area will be expanded to try and return the specified maxResults. Set to true to disable this behavior. Not supported in VertiGIS Studio Mobile.",
2753
2770
  "type": "boolean"
2754
2771
  },
2772
+ "mapViewpoint": {
2773
+ "$ref": "#/definitions/esri.Viewpoint",
2774
+ "description": "The map Viewpoint at the time of the search. Mobile only."
2775
+ },
2755
2776
  "maps": {
2756
2777
  "$ref": "MapsLike",
2757
2778
  "description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
@@ -2766,11 +2787,11 @@
2766
2787
  },
2767
2788
  "near": {
2768
2789
  "$ref": "#/definitions/esri.Point",
2769
- "description": "If specified, this will influence the score of spatial features based on their proximity to this point. Most commonly this would be the user's current location, but can be any point of interest. This option requires searchArea to also be specified. Not supported in Geocortex Mobile Viewer."
2790
+ "description": "If specified, this will influence the score of spatial features based on their proximity to this point. Most commonly this would be the user's current location, but can be any point of interest. This option requires searchArea to also be specified. Not supported in VertiGIS Studio Mobile."
2770
2791
  },
2771
2792
  "outSpatialReference": {
2772
2793
  "$ref": "#/definitions/esri.SpatialReference",
2773
- "description": "The spatial reference for the returned geometry. Not supported in Geocortex Mobile Viewer."
2794
+ "description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
2774
2795
  },
2775
2796
  "searchArea": {
2776
2797
  "$ref": "#/definitions/esri.Geometry",
@@ -2785,7 +2806,7 @@
2785
2806
  "type": "string"
2786
2807
  },
2787
2808
  "sources": {
2788
- "description": "The feature sources to search. Can be used instead of or in addition to \"maps\". Not supported in Geocortex Mobile Viewer (use \"maps\").",
2809
+ "description": "The feature sources to search. Can be used instead of or in addition to \"maps\". Not supported in VertiGIS Studio Mobile (use \"maps\").",
2789
2810
  "items": {
2790
2811
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
2791
2812
  },
@@ -2793,6 +2814,7 @@
2793
2814
  }
2794
2815
  },
2795
2816
  "required": [
2817
+ "mapViewpoint",
2796
2818
  "searchText"
2797
2819
  ],
2798
2820
  "type": "object"
@@ -2836,7 +2858,7 @@
2836
2858
  },
2837
2859
  "SetBasemapWithTargetMapArg": {
2838
2860
  "additionalProperties": false,
2839
- "description": "Argument used in case when we have more than 1 map in the app, and we need to pass the target map from outside (eg basemap picker in web viewer).",
2861
+ "description": "Argument used in case when we have more than 1 map in the app, and we need to pass the target map from outside (eg basemap picker in VertiGIS Studio Web).",
2840
2862
  "properties": {
2841
2863
  "basemap": {
2842
2864
  "$ref": "#/definitions/SetBasemapArg",
@@ -3088,7 +3110,7 @@
3088
3110
  },
3089
3111
  "StorageDataArgs": {
3090
3112
  "additionalProperties": false,
3091
- "description": "Arguments for the reading app.*-persistent-data operations. Only available in the Geocortex Mobile Viewer.",
3113
+ "description": "Arguments for the reading app.*-persistent-data operations. Only available in VertiGIS Studio Mobile.",
3092
3114
  "properties": {
3093
3115
  "key": {
3094
3116
  "description": "The key of the data to store.",
@@ -3419,7 +3441,7 @@
3419
3441
  "$ref": "#/definitions/StorageDataArgs"
3420
3442
  },
3421
3443
  "app.go-to-app-selector": {
3422
- "description": "Returns to the Geocortex Go view where the user can select a different app. Only enabled if the current app was launched through Geocortex Go.",
3444
+ "description": "Returns to the app selector view where the user can select a different app. Only enabled if the current app was launched through VertiGIS Studio Go.",
3423
3445
  "enum": [
3424
3446
  "app.go-to-app-selector"
3425
3447
  ]
@@ -3476,7 +3498,7 @@
3476
3498
  "$ref": "esriRuntimeSdk.Credential"
3477
3499
  },
3478
3500
  "auth.sign-in": {
3479
- "description": "Initiates user sign-in if they aren't already signed in. The argument indicates whether or not the map should be reloaded when the sign-in is complete. This argument is optional and only supported by Geocortex Mobile Viewer.",
3501
+ "description": "Initiates user sign-in if they aren't already signed in. The argument indicates whether or not the map should be reloaded when the sign-in is complete. This argument is optional and only supported by VertiGIS Studio Mobile.",
3480
3502
  "enum": [
3481
3503
  "auth.sign-in"
3482
3504
  ]
@@ -3488,7 +3510,7 @@
3488
3510
  ]
3489
3511
  },
3490
3512
  "auth.sign-out": {
3491
- "description": "Signs the user out. The argument indicates whether or not the map should be reloaded when the sign-out is complete. This argument is optional and only supported by Geocortex Mobile Viewer.",
3513
+ "description": "Signs the user out. The argument indicates whether or not the map should be reloaded when the sign-out is complete. This argument is optional and only supported by VertiGIS Studio Mobile.",
3492
3514
  "enum": [
3493
3515
  "auth.sign-out"
3494
3516
  ]
@@ -3586,6 +3608,9 @@
3586
3608
  },
3587
3609
  "type": "array"
3588
3610
  },
3611
+ {
3612
+ "$ref": "#/definitions/esri.Geometry"
3613
+ },
3589
3614
  {
3590
3615
  "$ref": "#/definitions/esri.rest-api.Feature.Feature"
3591
3616
  },
@@ -3620,12 +3645,12 @@
3620
3645
  {
3621
3646
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
3622
3647
  },
3623
- {
3624
- "$ref": "#/definitions/esri.Geometry"
3625
- },
3626
3648
  {
3627
3649
  "items": {
3628
3650
  "anyOf": [
3651
+ {
3652
+ "$ref": "#/definitions/esri.Geometry"
3653
+ },
3629
3654
  {
3630
3655
  "$ref": "#/definitions/esri.rest-api.Point.Point"
3631
3656
  },
@@ -3640,9 +3665,6 @@
3640
3665
  },
3641
3666
  {
3642
3667
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
3643
- },
3644
- {
3645
- "$ref": "#/definitions/esri.Geometry"
3646
3668
  }
3647
3669
  ]
3648
3670
  },
@@ -3796,10 +3818,10 @@
3796
3818
  "edit.display-add-feature:input": {
3797
3819
  "anyOf": [
3798
3820
  {
3799
- "$ref": "#/definitions/DisplayAddFeatureArgs"
3821
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
3800
3822
  },
3801
3823
  {
3802
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
3824
+ "$ref": "#/definitions/DisplayAddFeatureArgs"
3803
3825
  }
3804
3826
  ]
3805
3827
  },
@@ -12749,7 +12771,7 @@
12749
12771
  "$ref": "#/definitions/SuggestArgs"
12750
12772
  },
12751
12773
  "geolocation.auto-recenter": {
12752
- "description": "Centers the map on the user's current location and keeps the location centered as it moves around. The maps parameter is only supported in Geocortex Mobile Viewer. In Geocortex Web Viewer, all maps are affected.",
12774
+ "description": "Centers the map on the user's current location and keeps the location centered as it moves around. The maps parameter is only supported in VertiGIS Studio Mobile. In VertiGIS Studio Web, all maps are affected.",
12753
12775
  "enum": [
12754
12776
  "geolocation.auto-recenter"
12755
12777
  ]
@@ -12761,7 +12783,7 @@
12761
12783
  ]
12762
12784
  },
12763
12785
  "geolocation.auto-recenter-and-reorient:input": {
12764
- "$ref": "MapExtensionArgs"
12786
+ "$ref": "#/definitions/HasMaps"
12765
12787
  },
12766
12788
  "geolocation.auto-recenter:input": {
12767
12789
  "anyOf": [
@@ -12884,7 +12906,7 @@
12884
12906
  "geometry-toolbar.hide:input": {
12885
12907
  "anyOf": [
12886
12908
  {
12887
- "$ref": "MapExtensionArgs"
12909
+ "$ref": "#/definitions/HasMaps"
12888
12910
  },
12889
12911
  {
12890
12912
  "type": "null"
@@ -13036,10 +13058,10 @@
13036
13058
  ]
13037
13059
  },
13038
13060
  "highlights.hide-focus:input": {
13039
- "$ref": "MapExtensionArgs"
13061
+ "$ref": "#/definitions/HasMaps"
13040
13062
  },
13041
13063
  "highlights.hide:input": {
13042
- "$ref": "MapExtensionArgs"
13064
+ "$ref": "#/definitions/HasMaps"
13043
13065
  },
13044
13066
  "highlights.pulse": {
13045
13067
  "description": "Adds a temporary focused-state highlight to one or more features.",
@@ -13057,7 +13079,7 @@
13057
13079
  ]
13058
13080
  },
13059
13081
  "highlights.refresh:input": {
13060
- "$ref": "MapExtensionFeatureArgs"
13082
+ "$ref": "#/definitions/HasMapsAndFeatures"
13061
13083
  },
13062
13084
  "highlights.remove": {
13063
13085
  "description": "Removes highlighting from one or many features.",
@@ -13090,10 +13112,10 @@
13090
13112
  ]
13091
13113
  },
13092
13114
  "highlights.show-focus:input": {
13093
- "$ref": "MapExtensionArgs"
13115
+ "$ref": "#/definitions/HasMaps"
13094
13116
  },
13095
13117
  "highlights.show:input": {
13096
- "$ref": "MapExtensionArgs"
13118
+ "$ref": "#/definitions/HasMaps"
13097
13119
  },
13098
13120
  "iwtm.open": {
13099
13121
  "description": "Displays the I Want To Menu with the given ID.",
@@ -13195,7 +13217,7 @@
13195
13217
  ]
13196
13218
  },
13197
13219
  "map.disable-map-click:input": {
13198
- "$ref": "MapExtensionArgs"
13220
+ "$ref": "#/definitions/HasMaps"
13199
13221
  },
13200
13222
  "map.display-extent-selector": {
13201
13223
  "description": "Displays a square overlay on the map that allows the user to change the map extent within the overlay.",
@@ -13213,7 +13235,7 @@
13213
13235
  ]
13214
13236
  },
13215
13237
  "map.enable-map-click:input": {
13216
- "$ref": "MapExtensionArgs"
13238
+ "$ref": "#/definitions/HasMaps"
13217
13239
  },
13218
13240
  "map.export-image": {
13219
13241
  "description": "Exports the currently rendered map to a png image file on disk, and also returns that image.",
@@ -13265,7 +13287,7 @@
13265
13287
  ]
13266
13288
  },
13267
13289
  "map.get-geometry-from-selector:input": {
13268
- "$ref": "MapExtensionArgs"
13290
+ "$ref": "#/definitions/HasMaps"
13269
13291
  },
13270
13292
  "map.get-geometry-from-selector:output": {
13271
13293
  "$ref": "#/definitions/esri.Extent"
@@ -13305,7 +13327,7 @@
13305
13327
  ]
13306
13328
  },
13307
13329
  "map.get-view-insets:input": {
13308
- "$ref": "MapExtensionArgs"
13330
+ "$ref": "#/definitions/HasMaps"
13309
13331
  },
13310
13332
  "map.get-view-insets:output": {
13311
13333
  "$ref": "#/definitions/GetViewInsetsArgs"
@@ -13317,7 +13339,7 @@
13317
13339
  ]
13318
13340
  },
13319
13341
  "map.get-visible-center:input": {
13320
- "$ref": "MapExtensionArgs"
13342
+ "$ref": "#/definitions/HasMaps"
13321
13343
  },
13322
13344
  "map.get-visible-center:output": {
13323
13345
  "$ref": "#/definitions/esri.Point"
@@ -13335,7 +13357,7 @@
13335
13357
  ]
13336
13358
  },
13337
13359
  "map.hide-extent-selector:input": {
13338
- "$ref": "MapExtensionArgs"
13360
+ "$ref": "#/definitions/HasMaps"
13339
13361
  },
13340
13362
  "map.hide:input": {
13341
13363
  "$ref": "#/definitions/HideMapArgs"
@@ -13359,7 +13381,7 @@
13359
13381
  ]
13360
13382
  },
13361
13383
  "map.pause-sketch:input": {
13362
- "$ref": "MapExtensionArgs"
13384
+ "$ref": "#/definitions/HasMaps"
13363
13385
  },
13364
13386
  "map.refresh": {
13365
13387
  "description": "Refreshes / reloads the map.",
@@ -13368,7 +13390,7 @@
13368
13390
  ]
13369
13391
  },
13370
13392
  "map.refresh:input": {
13371
- "$ref": "MapExtensionArgs"
13393
+ "$ref": "#/definitions/HasMaps"
13372
13394
  },
13373
13395
  "map.replace": {
13374
13396
  "description": "Replaces the entire current map in the MapExtension and in the map component with a different map.",
@@ -13404,7 +13426,7 @@
13404
13426
  ]
13405
13427
  },
13406
13428
  "map.resume-sketch:input": {
13407
- "$ref": "MapExtensionArgs"
13429
+ "$ref": "#/definitions/HasMaps"
13408
13430
  },
13409
13431
  "map.rotate-by": {
13410
13432
  "description": "Rotates the map by the specified amount.",
@@ -13431,7 +13453,7 @@
13431
13453
  ]
13432
13454
  },
13433
13455
  "map.show:input": {
13434
- "$ref": "MapExtensionArgs"
13456
+ "$ref": "#/definitions/HasMaps"
13435
13457
  },
13436
13458
  "map.show:output": {
13437
13459
  "type": "boolean"
@@ -13455,7 +13477,7 @@
13455
13477
  ]
13456
13478
  },
13457
13479
  "map.stop-sketch:input": {
13458
- "$ref": "MapExtensionArgs"
13480
+ "$ref": "#/definitions/HasMaps"
13459
13481
  },
13460
13482
  "map.stop-sketch:output": {
13461
13483
  "$ref": "#/definitions/esri.Geometry"
@@ -14416,7 +14438,7 @@
14416
14438
  "$ref": "#/definitions/Features"
14417
14439
  },
14418
14440
  "ui.activate": {
14419
- "description": "Activates a component with the given ID or model, causing it to become visible. For Geocortex Mobile Viewer, only ID is supported.",
14441
+ "description": "Activates a component with the given ID or model, causing it to become visible. For VertiGIS Studio Mobile, only ID is supported.",
14420
14442
  "enum": [
14421
14443
  "ui.activate"
14422
14444
  ]
@@ -14471,7 +14493,7 @@
14471
14493
  "type": "boolean"
14472
14494
  },
14473
14495
  "ui.deactivate": {
14474
- "description": "Deactivates a component with the given ID, causing it to disappear. For Geocortex Mobile Viewer, only ID is supported.",
14496
+ "description": "Deactivates a component with the given ID, causing it to disappear. For VertiGIS Studio Mobile, only ID is supported.",
14475
14497
  "enum": [
14476
14498
  "ui.deactivate"
14477
14499
  ]