@vertigis/viewer-spec 49.9.0 → 50.0.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/README.md +1 -1
- package/analytics/MobileAction.d.ts +54 -0
- package/analytics/MobileAction.js +1 -0
- package/app-config/mobile/BasemapModelProperties.d.ts +1 -1
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -2
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/ResultsModelProperties.d.ts +1 -1
- package/app-config/web/VertigisWebModelProperties.d.ts +2 -3
- package/docs/presentation.md +30 -23
- package/messaging/DotNetTypes.d.ts +4 -0
- package/messaging/DotNetTypes.js +1 -0
- package/messaging/common.d.ts +53 -2
- package/messaging/common.js +1 -1
- package/messaging/mobile.d.ts +1 -8
- package/messaging/registry/Events.d.ts +6 -0
- package/messaging/registry/Events.js +1 -1
- package/messaging/registry/app.d.ts +32 -32
- package/messaging/registry/app.js +1 -1
- package/messaging/registry/auth.d.ts +44 -11
- package/messaging/registry/auth.js +1 -1
- package/messaging/registry/basemap.d.ts +19 -1
- package/messaging/registry/basemap.js +1 -1
- package/messaging/registry/bookmark.d.ts +41 -0
- package/messaging/registry/bookmark.js +1 -0
- package/messaging/registry/device.d.ts +12 -0
- package/messaging/registry/device.js +1 -1
- package/messaging/registry/file.d.ts +10 -0
- package/messaging/registry/file.js +1 -1
- package/messaging/registry/geolocation.d.ts +163 -7
- package/messaging/registry/geolocation.js +1 -1
- package/messaging/registry/geometry-toolbar.d.ts +5 -5
- package/messaging/registry/highlights.d.ts +6 -7
- package/messaging/registry/map.d.ts +85 -14
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/measurement.d.ts +36 -4
- package/messaging/registry/measurement.js +1 -1
- package/messaging/registry/offline.d.ts +6 -0
- package/messaging/registry/offline.js +1 -1
- package/messaging/registry/panel.d.ts +8 -1
- package/messaging/registry/panel.js +1 -1
- package/messaging/registry/photos.js +1 -1
- package/messaging/registry/results.d.ts +40 -0
- package/messaging/registry/results.js +1 -1
- package/messaging/registry/search.d.ts +31 -7
- package/messaging/registry/search.js +1 -1
- package/messaging/registry/settings.d.ts +40 -0
- package/messaging/registry/settings.js +1 -0
- package/messaging/registry/shortcut.d.ts +40 -0
- package/messaging/registry/shortcut.js +1 -0
- package/messaging/registry/sketching.d.ts +4 -4
- package/messaging/registry/system.d.ts +21 -0
- package/messaging/registry/system.js +1 -1
- package/messaging/registry/tasks.d.ts +26 -16
- package/messaging/registry/tasks.js +1 -1
- package/messaging/registry/ui.d.ts +4 -4
- package/messaging/registry/workflow.d.ts +6 -9
- package/messaging/schema/common-action.schema.json +43 -38
- package/messaging/schema/common-event.schema.json +193 -11
- package/messaging/schema/mobile-action.schema.json +91 -79
- package/messaging/schema/mobile-event.schema.json +1075 -107
- package/messaging/schema/web-action.schema.json +67 -62
- package/messaging/schema/web-event.schema.json +130 -20
- package/package.json +1 -1
- package/version.d.ts +1 -1
- 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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
{
|
|
@@ -2724,7 +2731,7 @@
|
|
|
2724
2731
|
},
|
|
2725
2732
|
"SaveStorageDataArgs": {
|
|
2726
2733
|
"additionalProperties": false,
|
|
2727
|
-
"description": "Arguments for the app.set-persistent-data operations. Only available in
|
|
2734
|
+
"description": "Arguments for the app.set-persistent-data operations. Only available in VertiGIS Studio Mobile.",
|
|
2728
2735
|
"properties": {
|
|
2729
2736
|
"data": {
|
|
2730
2737
|
"description": "The data to be stored."
|
|
@@ -2749,9 +2756,13 @@
|
|
|
2749
2756
|
"description": "Arguments for search operations.",
|
|
2750
2757
|
"properties": {
|
|
2751
2758
|
"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
|
|
2759
|
+
"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
2760
|
"type": "boolean"
|
|
2754
2761
|
},
|
|
2762
|
+
"mapViewpoint": {
|
|
2763
|
+
"$ref": "#/definitions/esri.Viewpoint",
|
|
2764
|
+
"description": "The map Viewpoint at the time of the search. Mobile only."
|
|
2765
|
+
},
|
|
2755
2766
|
"maps": {
|
|
2756
2767
|
"$ref": "MapsLike",
|
|
2757
2768
|
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
|
|
@@ -2766,11 +2777,11 @@
|
|
|
2766
2777
|
},
|
|
2767
2778
|
"near": {
|
|
2768
2779
|
"$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
|
|
2780
|
+
"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
2781
|
},
|
|
2771
2782
|
"outSpatialReference": {
|
|
2772
2783
|
"$ref": "#/definitions/esri.SpatialReference",
|
|
2773
|
-
"description": "The spatial reference for the returned geometry. Not supported in
|
|
2784
|
+
"description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
|
|
2774
2785
|
},
|
|
2775
2786
|
"searchArea": {
|
|
2776
2787
|
"$ref": "#/definitions/esri.Geometry",
|
|
@@ -2785,7 +2796,7 @@
|
|
|
2785
2796
|
"type": "string"
|
|
2786
2797
|
},
|
|
2787
2798
|
"sources": {
|
|
2788
|
-
"description": "The feature sources to search. Can be used instead of or in addition to \"maps\". Not supported in
|
|
2799
|
+
"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
2800
|
"items": {
|
|
2790
2801
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
2791
2802
|
},
|
|
@@ -2793,6 +2804,7 @@
|
|
|
2793
2804
|
}
|
|
2794
2805
|
},
|
|
2795
2806
|
"required": [
|
|
2807
|
+
"mapViewpoint",
|
|
2796
2808
|
"searchText"
|
|
2797
2809
|
],
|
|
2798
2810
|
"type": "object"
|
|
@@ -2836,7 +2848,7 @@
|
|
|
2836
2848
|
},
|
|
2837
2849
|
"SetBasemapWithTargetMapArg": {
|
|
2838
2850
|
"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
|
|
2851
|
+
"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
2852
|
"properties": {
|
|
2841
2853
|
"basemap": {
|
|
2842
2854
|
"$ref": "#/definitions/SetBasemapArg",
|
|
@@ -3088,7 +3100,7 @@
|
|
|
3088
3100
|
},
|
|
3089
3101
|
"StorageDataArgs": {
|
|
3090
3102
|
"additionalProperties": false,
|
|
3091
|
-
"description": "Arguments for the reading app.*-persistent-data operations. Only available in
|
|
3103
|
+
"description": "Arguments for the reading app.*-persistent-data operations. Only available in VertiGIS Studio Mobile.",
|
|
3092
3104
|
"properties": {
|
|
3093
3105
|
"key": {
|
|
3094
3106
|
"description": "The key of the data to store.",
|
|
@@ -3419,7 +3431,7 @@
|
|
|
3419
3431
|
"$ref": "#/definitions/StorageDataArgs"
|
|
3420
3432
|
},
|
|
3421
3433
|
"app.go-to-app-selector": {
|
|
3422
|
-
"description": "Returns to the
|
|
3434
|
+
"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
3435
|
"enum": [
|
|
3424
3436
|
"app.go-to-app-selector"
|
|
3425
3437
|
]
|
|
@@ -3476,7 +3488,7 @@
|
|
|
3476
3488
|
"$ref": "esriRuntimeSdk.Credential"
|
|
3477
3489
|
},
|
|
3478
3490
|
"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
|
|
3491
|
+
"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
3492
|
"enum": [
|
|
3481
3493
|
"auth.sign-in"
|
|
3482
3494
|
]
|
|
@@ -3488,7 +3500,7 @@
|
|
|
3488
3500
|
]
|
|
3489
3501
|
},
|
|
3490
3502
|
"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
|
|
3503
|
+
"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
3504
|
"enum": [
|
|
3493
3505
|
"auth.sign-out"
|
|
3494
3506
|
]
|
|
@@ -3586,6 +3598,9 @@
|
|
|
3586
3598
|
},
|
|
3587
3599
|
"type": "array"
|
|
3588
3600
|
},
|
|
3601
|
+
{
|
|
3602
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
3603
|
+
},
|
|
3589
3604
|
{
|
|
3590
3605
|
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
3591
3606
|
},
|
|
@@ -3620,12 +3635,12 @@
|
|
|
3620
3635
|
{
|
|
3621
3636
|
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
3622
3637
|
},
|
|
3623
|
-
{
|
|
3624
|
-
"$ref": "#/definitions/esri.Geometry"
|
|
3625
|
-
},
|
|
3626
3638
|
{
|
|
3627
3639
|
"items": {
|
|
3628
3640
|
"anyOf": [
|
|
3641
|
+
{
|
|
3642
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
3643
|
+
},
|
|
3629
3644
|
{
|
|
3630
3645
|
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
3631
3646
|
},
|
|
@@ -3640,9 +3655,6 @@
|
|
|
3640
3655
|
},
|
|
3641
3656
|
{
|
|
3642
3657
|
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
3643
|
-
},
|
|
3644
|
-
{
|
|
3645
|
-
"$ref": "#/definitions/esri.Geometry"
|
|
3646
3658
|
}
|
|
3647
3659
|
]
|
|
3648
3660
|
},
|
|
@@ -3796,10 +3808,10 @@
|
|
|
3796
3808
|
"edit.display-add-feature:input": {
|
|
3797
3809
|
"anyOf": [
|
|
3798
3810
|
{
|
|
3799
|
-
"$ref": "
|
|
3811
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
3800
3812
|
},
|
|
3801
3813
|
{
|
|
3802
|
-
"$ref": "
|
|
3814
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
3803
3815
|
}
|
|
3804
3816
|
]
|
|
3805
3817
|
},
|
|
@@ -12749,7 +12761,7 @@
|
|
|
12749
12761
|
"$ref": "#/definitions/SuggestArgs"
|
|
12750
12762
|
},
|
|
12751
12763
|
"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
|
|
12764
|
+
"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
12765
|
"enum": [
|
|
12754
12766
|
"geolocation.auto-recenter"
|
|
12755
12767
|
]
|
|
@@ -12761,7 +12773,7 @@
|
|
|
12761
12773
|
]
|
|
12762
12774
|
},
|
|
12763
12775
|
"geolocation.auto-recenter-and-reorient:input": {
|
|
12764
|
-
"$ref": "
|
|
12776
|
+
"$ref": "#/definitions/HasMaps"
|
|
12765
12777
|
},
|
|
12766
12778
|
"geolocation.auto-recenter:input": {
|
|
12767
12779
|
"anyOf": [
|
|
@@ -12884,7 +12896,7 @@
|
|
|
12884
12896
|
"geometry-toolbar.hide:input": {
|
|
12885
12897
|
"anyOf": [
|
|
12886
12898
|
{
|
|
12887
|
-
"$ref": "
|
|
12899
|
+
"$ref": "#/definitions/HasMaps"
|
|
12888
12900
|
},
|
|
12889
12901
|
{
|
|
12890
12902
|
"type": "null"
|
|
@@ -13036,10 +13048,10 @@
|
|
|
13036
13048
|
]
|
|
13037
13049
|
},
|
|
13038
13050
|
"highlights.hide-focus:input": {
|
|
13039
|
-
"$ref": "
|
|
13051
|
+
"$ref": "#/definitions/HasMaps"
|
|
13040
13052
|
},
|
|
13041
13053
|
"highlights.hide:input": {
|
|
13042
|
-
"$ref": "
|
|
13054
|
+
"$ref": "#/definitions/HasMaps"
|
|
13043
13055
|
},
|
|
13044
13056
|
"highlights.pulse": {
|
|
13045
13057
|
"description": "Adds a temporary focused-state highlight to one or more features.",
|
|
@@ -13057,7 +13069,7 @@
|
|
|
13057
13069
|
]
|
|
13058
13070
|
},
|
|
13059
13071
|
"highlights.refresh:input": {
|
|
13060
|
-
"$ref": "
|
|
13072
|
+
"$ref": "#/definitions/HasMapsAndFeatures"
|
|
13061
13073
|
},
|
|
13062
13074
|
"highlights.remove": {
|
|
13063
13075
|
"description": "Removes highlighting from one or many features.",
|
|
@@ -13090,10 +13102,10 @@
|
|
|
13090
13102
|
]
|
|
13091
13103
|
},
|
|
13092
13104
|
"highlights.show-focus:input": {
|
|
13093
|
-
"$ref": "
|
|
13105
|
+
"$ref": "#/definitions/HasMaps"
|
|
13094
13106
|
},
|
|
13095
13107
|
"highlights.show:input": {
|
|
13096
|
-
"$ref": "
|
|
13108
|
+
"$ref": "#/definitions/HasMaps"
|
|
13097
13109
|
},
|
|
13098
13110
|
"iwtm.open": {
|
|
13099
13111
|
"description": "Displays the I Want To Menu with the given ID.",
|
|
@@ -13195,7 +13207,7 @@
|
|
|
13195
13207
|
]
|
|
13196
13208
|
},
|
|
13197
13209
|
"map.disable-map-click:input": {
|
|
13198
|
-
"$ref": "
|
|
13210
|
+
"$ref": "#/definitions/HasMaps"
|
|
13199
13211
|
},
|
|
13200
13212
|
"map.display-extent-selector": {
|
|
13201
13213
|
"description": "Displays a square overlay on the map that allows the user to change the map extent within the overlay.",
|
|
@@ -13213,7 +13225,7 @@
|
|
|
13213
13225
|
]
|
|
13214
13226
|
},
|
|
13215
13227
|
"map.enable-map-click:input": {
|
|
13216
|
-
"$ref": "
|
|
13228
|
+
"$ref": "#/definitions/HasMaps"
|
|
13217
13229
|
},
|
|
13218
13230
|
"map.export-image": {
|
|
13219
13231
|
"description": "Exports the currently rendered map to a png image file on disk, and also returns that image.",
|
|
@@ -13265,7 +13277,7 @@
|
|
|
13265
13277
|
]
|
|
13266
13278
|
},
|
|
13267
13279
|
"map.get-geometry-from-selector:input": {
|
|
13268
|
-
"$ref": "
|
|
13280
|
+
"$ref": "#/definitions/HasMaps"
|
|
13269
13281
|
},
|
|
13270
13282
|
"map.get-geometry-from-selector:output": {
|
|
13271
13283
|
"$ref": "#/definitions/esri.Extent"
|
|
@@ -13305,7 +13317,7 @@
|
|
|
13305
13317
|
]
|
|
13306
13318
|
},
|
|
13307
13319
|
"map.get-view-insets:input": {
|
|
13308
|
-
"$ref": "
|
|
13320
|
+
"$ref": "#/definitions/HasMaps"
|
|
13309
13321
|
},
|
|
13310
13322
|
"map.get-view-insets:output": {
|
|
13311
13323
|
"$ref": "#/definitions/GetViewInsetsArgs"
|
|
@@ -13317,7 +13329,7 @@
|
|
|
13317
13329
|
]
|
|
13318
13330
|
},
|
|
13319
13331
|
"map.get-visible-center:input": {
|
|
13320
|
-
"$ref": "
|
|
13332
|
+
"$ref": "#/definitions/HasMaps"
|
|
13321
13333
|
},
|
|
13322
13334
|
"map.get-visible-center:output": {
|
|
13323
13335
|
"$ref": "#/definitions/esri.Point"
|
|
@@ -13335,7 +13347,7 @@
|
|
|
13335
13347
|
]
|
|
13336
13348
|
},
|
|
13337
13349
|
"map.hide-extent-selector:input": {
|
|
13338
|
-
"$ref": "
|
|
13350
|
+
"$ref": "#/definitions/HasMaps"
|
|
13339
13351
|
},
|
|
13340
13352
|
"map.hide:input": {
|
|
13341
13353
|
"$ref": "#/definitions/HideMapArgs"
|
|
@@ -13359,7 +13371,7 @@
|
|
|
13359
13371
|
]
|
|
13360
13372
|
},
|
|
13361
13373
|
"map.pause-sketch:input": {
|
|
13362
|
-
"$ref": "
|
|
13374
|
+
"$ref": "#/definitions/HasMaps"
|
|
13363
13375
|
},
|
|
13364
13376
|
"map.refresh": {
|
|
13365
13377
|
"description": "Refreshes / reloads the map.",
|
|
@@ -13368,7 +13380,7 @@
|
|
|
13368
13380
|
]
|
|
13369
13381
|
},
|
|
13370
13382
|
"map.refresh:input": {
|
|
13371
|
-
"$ref": "
|
|
13383
|
+
"$ref": "#/definitions/HasMaps"
|
|
13372
13384
|
},
|
|
13373
13385
|
"map.replace": {
|
|
13374
13386
|
"description": "Replaces the entire current map in the MapExtension and in the map component with a different map.",
|
|
@@ -13404,7 +13416,7 @@
|
|
|
13404
13416
|
]
|
|
13405
13417
|
},
|
|
13406
13418
|
"map.resume-sketch:input": {
|
|
13407
|
-
"$ref": "
|
|
13419
|
+
"$ref": "#/definitions/HasMaps"
|
|
13408
13420
|
},
|
|
13409
13421
|
"map.rotate-by": {
|
|
13410
13422
|
"description": "Rotates the map by the specified amount.",
|
|
@@ -13431,7 +13443,7 @@
|
|
|
13431
13443
|
]
|
|
13432
13444
|
},
|
|
13433
13445
|
"map.show:input": {
|
|
13434
|
-
"$ref": "
|
|
13446
|
+
"$ref": "#/definitions/HasMaps"
|
|
13435
13447
|
},
|
|
13436
13448
|
"map.show:output": {
|
|
13437
13449
|
"type": "boolean"
|
|
@@ -13455,7 +13467,7 @@
|
|
|
13455
13467
|
]
|
|
13456
13468
|
},
|
|
13457
13469
|
"map.stop-sketch:input": {
|
|
13458
|
-
"$ref": "
|
|
13470
|
+
"$ref": "#/definitions/HasMaps"
|
|
13459
13471
|
},
|
|
13460
13472
|
"map.stop-sketch:output": {
|
|
13461
13473
|
"$ref": "#/definitions/esri.Geometry"
|
|
@@ -14416,7 +14428,7 @@
|
|
|
14416
14428
|
"$ref": "#/definitions/Features"
|
|
14417
14429
|
},
|
|
14418
14430
|
"ui.activate": {
|
|
14419
|
-
"description": "Activates a component with the given ID or model, causing it to become visible. For
|
|
14431
|
+
"description": "Activates a component with the given ID or model, causing it to become visible. For VertiGIS Studio Mobile, only ID is supported.",
|
|
14420
14432
|
"enum": [
|
|
14421
14433
|
"ui.activate"
|
|
14422
14434
|
]
|
|
@@ -14471,7 +14483,7 @@
|
|
|
14471
14483
|
"type": "boolean"
|
|
14472
14484
|
},
|
|
14473
14485
|
"ui.deactivate": {
|
|
14474
|
-
"description": "Deactivates a component with the given ID, causing it to disappear. For
|
|
14486
|
+
"description": "Deactivates a component with the given ID, causing it to disappear. For VertiGIS Studio Mobile, only ID is supported.",
|
|
14475
14487
|
"enum": [
|
|
14476
14488
|
"ui.deactivate"
|
|
14477
14489
|
]
|