@vertigis/viewer-spec 53.10.0 → 54.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.
Files changed (65) hide show
  1. package/app-config/{mobile → common}/EventListenerModelProperties.d.ts +8 -3
  2. package/app-config/common/TranslatableText.d.ts +1 -1
  3. package/app-config/schema/mobile-app-config.schema.json +1 -1
  4. package/messaging/Event.d.ts +3 -2
  5. package/messaging/registry/app-config.d.ts +1 -1
  6. package/messaging/registry/app.d.ts +27 -21
  7. package/messaging/registry/arcade.d.ts +3 -3
  8. package/messaging/registry/auth.d.ts +4 -3
  9. package/messaging/registry/basemap.d.ts +2 -2
  10. package/messaging/registry/bookmark.d.ts +4 -4
  11. package/messaging/registry/charts.d.ts +8 -7
  12. package/messaging/registry/debugConsole.d.ts +2 -0
  13. package/messaging/registry/device.d.ts +3 -3
  14. package/messaging/registry/display.d.ts +1 -1
  15. package/messaging/registry/drawing.d.ts +8 -6
  16. package/messaging/registry/edit.d.ts +9 -8
  17. package/messaging/registry/file.d.ts +8 -8
  18. package/messaging/registry/filter-builder.d.ts +4 -3
  19. package/messaging/registry/geocode.d.ts +1 -1
  20. package/messaging/registry/geolocation.d.ts +27 -24
  21. package/messaging/registry/geometry-toolbar.d.ts +2 -2
  22. package/messaging/registry/geometry.d.ts +12 -12
  23. package/messaging/registry/highlights.d.ts +8 -6
  24. package/messaging/registry/input.d.ts +2 -2
  25. package/messaging/registry/iwtm.d.ts +1 -1
  26. package/messaging/registry/kpi.d.ts +8 -7
  27. package/messaging/registry/layer-comparison.d.ts +9 -8
  28. package/messaging/registry/layer-presets.d.ts +2 -2
  29. package/messaging/registry/layers.d.ts +16 -14
  30. package/messaging/registry/layout.d.ts +4 -4
  31. package/messaging/registry/licensing.d.ts +2 -2
  32. package/messaging/registry/location-marker.d.ts +7 -7
  33. package/messaging/registry/logViewer.d.ts +2 -2
  34. package/messaging/registry/map.d.ts +68 -61
  35. package/messaging/registry/measurement.d.ts +16 -16
  36. package/messaging/registry/messaging.d.ts +1 -1
  37. package/messaging/registry/network.d.ts +4 -4
  38. package/messaging/registry/offline.d.ts +34 -29
  39. package/messaging/registry/panel.d.ts +9 -5
  40. package/messaging/registry/photos.d.ts +3 -3
  41. package/messaging/registry/portal.d.ts +3 -3
  42. package/messaging/registry/project.d.ts +13 -13
  43. package/messaging/registry/query-builder.d.ts +3 -3
  44. package/messaging/registry/region.d.ts +2 -2
  45. package/messaging/registry/reports.d.ts +6 -5
  46. package/messaging/registry/results.d.ts +39 -31
  47. package/messaging/registry/search.d.ts +6 -6
  48. package/messaging/registry/settings.d.ts +1 -1
  49. package/messaging/registry/shortcut.d.ts +2 -2
  50. package/messaging/registry/sketching.d.ts +34 -29
  51. package/messaging/registry/system.d.ts +14 -13
  52. package/messaging/registry/tasks.d.ts +8 -5
  53. package/messaging/registry/ui.d.ts +32 -26
  54. package/messaging/registry/viewer.d.ts +13 -11
  55. package/messaging/registry/workflow.d.ts +7 -7
  56. package/messaging/schema/common-action.schema.json +15 -15
  57. package/messaging/schema/common-event.schema.json +5 -5
  58. package/messaging/schema/mobile-action.schema.json +131 -131
  59. package/messaging/schema/mobile-event.schema.json +99 -99
  60. package/messaging/schema/web-action.schema.json +215 -215
  61. package/messaging/schema/web-event.schema.json +37 -37
  62. package/package.json +9 -2
  63. package/version.d.ts +1 -1
  64. package/version.js +1 -1
  65. /package/app-config/{mobile → common}/EventListenerModelProperties.js +0 -0
@@ -126,19 +126,19 @@ export interface RemoveLocationMarkerArgs {
126
126
  }
127
127
  export declare class LocationMarkerEvents extends EventRegistry {
128
128
  /**
129
- * Raised when a Marker is created.
129
+ * Raised when a Marker is created. Web only.
130
130
  *
131
131
  * @webOnly
132
132
  */
133
133
  get created(): Event<LocationMarkerEvent>;
134
134
  /**
135
- * Raised when a Marker is removed.
135
+ * Raised when a Marker is removed. Web only.
136
136
  *
137
137
  * @webOnly
138
138
  */
139
139
  get removed(): Event<LocationMarkerEvent>;
140
140
  /**
141
- * Raised when a Marker is updated.
141
+ * Raised when a Marker is updated. Web only.
142
142
  *
143
143
  * @webOnly
144
144
  */
@@ -146,25 +146,25 @@ export declare class LocationMarkerEvents extends EventRegistry {
146
146
  }
147
147
  export declare class LocationMarkerCommands extends CommandRegistry {
148
148
  /**
149
- * Removes all Markers.
149
+ * Removes all Markers. Web only.
150
150
  *
151
151
  * @webOnly
152
152
  */
153
153
  get clear(): Command<MapsRef | HasMapsRef | void>;
154
154
  /**
155
- * Create a new Marker.
155
+ * Create a new Marker. Web only.
156
156
  *
157
157
  * @webOnly
158
158
  */
159
159
  get create(): Command<CreateLocationMarkerArgs>;
160
160
  /**
161
- * Remove a Marker.
161
+ * Remove a Marker. Web only.
162
162
  *
163
163
  * @webOnly
164
164
  */
165
165
  get remove(): Command<RemoveLocationMarkerArgs>;
166
166
  /**
167
- * Update an existing Marker.
167
+ * Update an existing Marker. Web only.
168
168
  *
169
169
  * @webOnly
170
170
  */
@@ -2,13 +2,13 @@ import type { Operation } from "../Operation.js";
2
2
  import { OperationRegistry } from "../OperationRegistry.js";
3
3
  export declare class LogViewerOperations extends OperationRegistry {
4
4
  /**
5
- * Displays the Log Viewer.
5
+ * Displays the Log Viewer. Mobile only.
6
6
  *
7
7
  * @mobileOnly
8
8
  */
9
9
  get display(): Operation<void>;
10
10
  /**
11
- * Closes the Log Viewer.
11
+ * Closes the Log Viewer. Mobile only.
12
12
  *
13
13
  * @mobileOnly
14
14
  */
@@ -35,14 +35,14 @@ export type MarkupLevel = "ui" | "labels" | "custom3" | "custom2" | "custom1" |
35
35
  */
36
36
  export interface MapEvent {
37
37
  /**
38
- * The map from which the event was generated.
38
+ * The map from which the event was generated. Web only.
39
39
  *
40
40
  * @webOnly
41
41
  */
42
42
  maps?: MapsLike;
43
43
  /**
44
44
  * The map extension for which the event was generated. This property is
45
- * required in VertiGIS Studio Mobile.
45
+ * required in VertiGIS Studio Mobile. Mobile only.
46
46
  *
47
47
  * @mobileOnly
48
48
  */
@@ -186,6 +186,8 @@ export interface MarkupArgs extends HasMaps {
186
186
  * "vgs-transient-measurement-labels": Measurement labels used while
187
187
  * drawing.
188
188
  *
189
+ * Web only.
190
+ *
189
191
  * @webOnly
190
192
  */
191
193
  collection?: string;
@@ -200,7 +202,7 @@ export interface AddMarkupArgs extends MarkupArgs {
200
202
  graphics?: Graphic[] | GraphicsLike;
201
203
  /**
202
204
  * The level (z-order) to assign the markup to. If not specified uses the
203
- * same level as default markup.
205
+ * same level as default markup. Web only.
204
206
  *
205
207
  * @webOnly
206
208
  */
@@ -774,43 +776,43 @@ export declare class MapCommands extends CommandRegistry {
774
776
  * Add the specified layer(s) to the maps(s). Layers will be inserted in the
775
777
  * order specified and will be added above existing layers in the drawing
776
778
  * order. Note that an Esri {@link Layer} object can only be added to one
777
- * map.
779
+ * map. Web only.
778
780
  *
779
781
  * @webOnly
780
782
  */
781
783
  get addLayers(): Command<AddLayersArgs>;
782
784
  /**
783
- * Applies a Filter Effect to the map(s).
785
+ * Applies a Filter Effect to the map(s). Web only.
784
786
  *
785
787
  * @webOnly
786
788
  */
787
789
  get applyFilterEffect(): Command<ApplyFilterEffectArgs>;
788
790
  /**
789
- * Applies a LayerPreset to the map(s).
791
+ * Applies a LayerPreset to the map(s). Web only.
790
792
  *
791
793
  * @webOnly
792
794
  */
793
795
  get applyLayerPreset(): Command<ApplyLayerPresetArgs>;
794
796
  /**
795
- * Create a map note.
797
+ * Create a map note. Web only.
796
798
  *
797
799
  * @webOnly
798
800
  */
799
801
  get createNote(): Command<CreateMapNoteArgs>;
800
802
  /**
801
- * Edit an existing map note.
803
+ * Edit an existing map note. Web only.
802
804
  *
803
805
  * @webOnly
804
806
  */
805
807
  get editNote(): Command<EditMapNotesArgs>;
806
808
  /**
807
- * Removes a Filter Effect(s) from the map(s).
809
+ * Removes a Filter Effect(s) from the map(s). Web only.
808
810
  *
809
811
  * @webOnly
810
812
  */
811
813
  get removeFilterEffects(): Command<Layers>;
812
814
  /**
813
- * Clears all Filter Effects from the map(s).
815
+ * Clears all Filter Effects from the map(s). Web only.
814
816
  *
815
817
  * @webOnly
816
818
  */
@@ -821,53 +823,55 @@ export declare class MapCommands extends CommandRegistry {
821
823
  get clearMarkup(): Command<ClearMarkupArgs | void>;
822
824
  /**
823
825
  * Disables the click event handler on the map, so that if the user clicks
824
- * on the map, the configured handler will not be invoked.
826
+ * on the map, the configured handler will not be invoked. Mobile only.
825
827
  *
826
828
  * @mobileOnly
827
829
  */
828
830
  get disableMapClick(): Command<HasMaps>;
829
831
  /**
830
832
  * Displays a square overlay on the map that allows the user to change the
831
- * map extent within the overlay.
833
+ * map extent within the overlay. Mobile only.
832
834
  *
833
835
  * @mobileOnly
834
836
  */
835
837
  get displayExtentSelector(): Command<DisplayExtentSelectorArgs>;
836
838
  /**
837
839
  * Enables the click event handler on the map, so that if the user clicks on
838
- * the map, the configured handler will be invoked.
840
+ * the map, the configured handler will be invoked. Mobile only.
839
841
  *
840
842
  * @mobileOnly
841
843
  */
842
844
  get enableMapClick(): Command<HasMaps>;
843
845
  /**
844
846
  * Zooms to (without animation) one or many features on the targeted map(s).
847
+ * Web only.
845
848
  *
846
849
  * @webOnly
847
850
  */
848
851
  get goToFeatures(): Command<Features>;
849
852
  /**
850
853
  * Zooms to (without animation) one or many geometries on the targeted
851
- * map(s).
854
+ * map(s). Web only.
852
855
  *
853
856
  * @webOnly
854
857
  */
855
858
  get goToGeometry(): Command<Geometries | HasMapGeometry>;
856
859
  /**
857
- * Zooms to (without animation) the given viewpoint.
860
+ * Zooms to (without animation) the given viewpoint. Web only.
858
861
  *
859
862
  * @webOnly
860
863
  */
861
864
  get goToViewpoint(): Command<ZoomToViewpointArgs | ViewpointLike>;
862
865
  /**
863
- * Zooms (without animation) the map to a specified, numerical scale.
866
+ * Zooms (without animation) the map to a specified, numerical scale. Web
867
+ * only.
864
868
  *
865
869
  * @webOnly
866
870
  */
867
871
  get goToScale(): Command<ZoomToScaleArgs>;
868
872
  /**
869
873
  * Zooms (without animation) the map to its initial viewpoint. If map is
870
- * omitted, all maps will be targeted.
874
+ * omitted, all maps will be targeted. Web only.
871
875
  *
872
876
  * @webOnly
873
877
  */
@@ -875,20 +879,20 @@ export declare class MapCommands extends CommandRegistry {
875
879
  /**
876
880
  * Go to (without animation) the full extent of the layer(s). If more than
877
881
  * one layer is specified, it will zoom to the combined extent of all
878
- * layers.
882
+ * layers. Web only.
879
883
  *
880
884
  * @webOnly
881
885
  */
882
886
  get goToLayerExtent(): Command<ZoomToLayerArgs>;
883
887
  /**
884
- * Hides the extent selector overlay on the map.
888
+ * Hides the extent selector overlay on the map. Mobile only.
885
889
  *
886
890
  * @mobileOnly
887
891
  */
888
892
  get hideExtentSelector(): Command<HasMaps>;
889
893
  /**
890
894
  * Show the specified markup collection, if hidden. If no collection is
891
- * specified the default markup collection will be shown.
895
+ * specified the default markup collection will be shown. Web only.
892
896
  *
893
897
  * @webOnly
894
898
  */
@@ -899,26 +903,27 @@ export declare class MapCommands extends CommandRegistry {
899
903
  get panToFeatures(): Command<Features>;
900
904
  /**
901
905
  * Pan (without zooming) to one or many geometries on the targeted map(s).
906
+ * Web only.
902
907
  *
903
908
  * @webOnly
904
909
  */
905
910
  get panToGeometry(): Command<Geometries | HasMapGeometry>;
906
911
  /**
907
912
  * Pauses sketching on the map. Stores the current sketch editor and
908
- * geometry for later use.
913
+ * geometry for later use. Mobile only.
909
914
  *
910
915
  * @mobileOnly
911
916
  */
912
917
  get pauseSketch(): Command<HasMaps>;
913
918
  /**
914
- * Remove the specified layer(s) from the map(s).
919
+ * Remove the specified layer(s) from the map(s). Web only.
915
920
  *
916
921
  * @webOnly
917
922
  */
918
923
  get removeLayers(): Command<LayersLike | RemoveLayersArgs>;
919
924
  /**
920
925
  * Replaces the entire current map in the MapExtension and in the map
921
- * component with a different map.
926
+ * component with a different map. Mobile only.
922
927
  *
923
928
  * @mobileOnly
924
929
  */
@@ -926,20 +931,21 @@ export declare class MapCommands extends CommandRegistry {
926
931
  /**
927
932
  * Replaces the additional layers on top of an mmpk with a new set of
928
933
  * layers, when using mmpk + WebMap. The mmpk part of the map is retained.
934
+ * Mobile only.
929
935
  *
930
936
  * @mobileOnly
931
937
  */
932
938
  get replaceAdditionalLayers(): Command<ReplaceMapArgs>;
933
939
  /**
934
940
  * Replaces the underlying mmpk part of the map when using mmpk + WebMap.
935
- * The additional layers on top of the mmpk data are retained.
941
+ * The additional layers on top of the mmpk data are retained. Mobile only.
936
942
  *
937
943
  * @mobileOnly
938
944
  */
939
945
  get replaceMmpk(): Command<ReplaceMapArgs>;
940
946
  /**
941
947
  * Resumes sketching on the map. Uses the sketch editor and geometry stored
942
- * when pausing.
948
+ * when pausing. Mobile only.
943
949
  *
944
950
  * @mobileOnly
945
951
  */
@@ -953,27 +959,27 @@ export declare class MapCommands extends CommandRegistry {
953
959
  */
954
960
  get rotateTo(): Command<MapRotateArgs>;
955
961
  /**
956
- * Refreshes / reloads the map.
962
+ * Refreshes / reloads the map. Mobile only.
957
963
  *
958
964
  * @mobileOnly
959
965
  */
960
966
  get refresh(): Command<HasMaps>;
961
967
  /**
962
968
  * Changes the view mode of a map to the specified mode, if supported. If no
963
- * maps are specified, all maps will be targeted.
969
+ * maps are specified, all maps will be targeted. Web only.
964
970
  *
965
971
  * @webOnly
966
972
  */
967
973
  get setViewMode(): Command<ViewMode | SetViewModeArgs>;
968
974
  /**
969
975
  * Show the specified markup collection, if hidden. If no collection is
970
- * specified the default markup collection will be shown.
976
+ * specified the default markup collection will be shown. Web only.
971
977
  *
972
978
  * @webOnly
973
979
  */
974
980
  get showMarkup(): Command<MarkupArgs | void>;
975
981
  /**
976
- * Updates a layer in the map.
982
+ * Updates a layer in the map. Web only.
977
983
  *
978
984
  * @webOnly
979
985
  */
@@ -983,25 +989,25 @@ export declare class MapCommands extends CommandRegistry {
983
989
  */
984
990
  get zoomToFeatures(): Command<Features>;
985
991
  /**
986
- * Zooms to one or many geometries.
992
+ * Zooms to one or many geometries. Web only.
987
993
  *
988
994
  * @webOnly
989
995
  */
990
996
  get zoomToGeometry(): Command<Geometries | HasMapGeometry>;
991
997
  /**
992
- * Zooms the map in by one level of detail.
998
+ * Zooms the map in by one level of detail. Web only.
993
999
  *
994
1000
  * @webOnly
995
1001
  */
996
1002
  get zoomIn(): Command<Maps | void>;
997
1003
  /**
998
- * Zooms the map out by one level of detail.
1004
+ * Zooms the map out by one level of detail. Web only.
999
1005
  *
1000
1006
  * @webOnly
1001
1007
  */
1002
1008
  get zoomOut(): Command<Maps | void>;
1003
1009
  /**
1004
- * Zooms the map to a specified, numerical scale.
1010
+ * Zooms the map to a specified, numerical scale. Web only.
1005
1011
  *
1006
1012
  * @webOnly
1007
1013
  */
@@ -1016,7 +1022,7 @@ export declare class MapCommands extends CommandRegistry {
1016
1022
  get zoomToViewpoint(): Command<ZoomToViewpointArgs | ViewpointLike>;
1017
1023
  /**
1018
1024
  * Go to the full extent of the layer(s). If more than one layer is
1019
- * specified, it will zoom to the combined extent of all layers.
1025
+ * specified, it will zoom to the combined extent of all layers. Web only.
1020
1026
  *
1021
1027
  * @webOnly
1022
1028
  */
@@ -1027,7 +1033,7 @@ export declare class MapCommands extends CommandRegistry {
1027
1033
  * provided, it will attempt to zoom to a scale range that makes all of the
1028
1034
  * layers visible. If this is not possible (i.e. some of the layers' scale
1029
1035
  * ranges don't overlap), then priority will be given to layers that come
1030
- * earlier in the sequence.
1036
+ * earlier in the sequence. Web only.
1031
1037
  *
1032
1038
  * @webOnly
1033
1039
  */
@@ -1043,62 +1049,63 @@ export declare class MapEvents extends EventRegistry {
1043
1049
  * Raised when a map is about to begin loading during startup. The map can
1044
1050
  * be swapped with a different map at this point if you want to circumvent
1045
1051
  * the map load process. For example in an app that supported offline, an
1046
- * offline map could be swapped in here.
1052
+ * offline map could be swapped in here. Mobile only.
1047
1053
  *
1048
1054
  * @mobileOnly
1049
1055
  */
1050
1056
  get initializing(): Event<MapEvent>;
1051
1057
  /**
1052
- * Raised when markup is added to the map.
1058
+ * Raised when markup is added to the map. Mobile only.
1053
1059
  *
1054
1060
  * @mobileOnly
1055
1061
  */
1056
1062
  get markupAdded(): Event<MarkupAddedEvent>;
1057
1063
  /**
1058
- * Raised when markup is cleared from the map.
1064
+ * Raised when markup is cleared from the map. Mobile only.
1059
1065
  *
1060
1066
  * @mobileOnly
1061
1067
  */
1062
1068
  get markupCleared(): Event<MapEvent>;
1063
1069
  /**
1064
- * Raised when the a map navigation (eg. Pan or zoom) is complete.
1070
+ * Raised when the a map navigation (eg. Pan or zoom) is complete. Mobile
1071
+ * only.
1065
1072
  *
1066
1073
  * @mobileOnly
1067
1074
  */
1068
1075
  get navigationCompleted(): Event<MapEvent>;
1069
1076
  /**
1070
- * Raised when a map refresh completes.
1077
+ * Raised when a map refresh completes. Mobile only.
1071
1078
  *
1072
1079
  * @mobileOnly
1073
1080
  */
1074
1081
  get refreshed(): Event<MapEvent>;
1075
1082
  /**
1076
- * Raised when a map refresh begins.
1083
+ * Raised when a map refresh begins. Mobile only.
1077
1084
  *
1078
1085
  * @mobileOnly
1079
1086
  */
1080
1087
  get refreshing(): Event<MapEvent>;
1081
1088
  /**
1082
- * Raised when the Rotate operation has completed execution.
1089
+ * Raised when the Rotate operation has completed execution. Mobile only.
1083
1090
  *
1084
1091
  * @mobileOnly
1085
1092
  */
1086
1093
  get rotated(): Event<MapEvent>;
1087
1094
  /**
1088
- * Raised when the Rotate operation is about to be called.
1095
+ * Raised when the Rotate operation is about to be called. Mobile only.
1089
1096
  *
1090
1097
  * @mobileOnly
1091
1098
  */
1092
1099
  get rotating(): Event<MapEvent>;
1093
1100
  /**
1094
- * Raised when a map is replaced with a different map.
1101
+ * Raised when a map is replaced with a different map. Mobile only.
1095
1102
  *
1096
1103
  * @mobileOnly
1097
1104
  */
1098
1105
  get switched(): Event<MapSwitchedEvent>;
1099
1106
  /**
1100
1107
  * Raised when a map's {@link ViewMode} is changed. This happens when the map
1101
- * view is changed between a WebMap and a WebScene.
1108
+ * view is changed between a WebMap and a WebScene. Web only.
1102
1109
  *
1103
1110
  * @webOnly
1104
1111
  */
@@ -1110,7 +1117,7 @@ export declare class MapEvents extends EventRegistry {
1110
1117
  */
1111
1118
  get viewpointChanged(): Event<MapEvent>;
1112
1119
  /**
1113
- * Raised when a map export operation has completed.
1120
+ * Raised when a map export operation has completed. Mobile only.
1114
1121
  *
1115
1122
  * @mobileOnly
1116
1123
  */
@@ -1118,7 +1125,7 @@ export declare class MapEvents extends EventRegistry {
1118
1125
  }
1119
1126
  export declare class MapOperations extends OperationRegistry {
1120
1127
  /**
1121
- * Prompts the user to enter and return a coordinate.
1128
+ * Prompts the user to enter and return a coordinate. Web only.
1122
1129
  *
1123
1130
  * @webOnly
1124
1131
  */
@@ -1129,41 +1136,41 @@ export declare class MapOperations extends OperationRegistry {
1129
1136
  * coordinate transformation object of the first available map. The
1130
1137
  * coordinate transformation object contains information about the input and
1131
1138
  * output spatial reference, as well as the necessary transformations to
1132
- * convert between those coordinate systems.
1139
+ * convert between those coordinate systems. Mobile only.
1133
1140
  *
1134
1141
  * @mobileOnly
1135
1142
  */
1136
1143
  get getCoordinateTransformation(): Operation<Maps | void, CoordinateTransformation[]>;
1137
1144
  /**
1138
1145
  * Exports the currently rendered map to a png image file on disk, and also
1139
- * returns that image.
1146
+ * returns that image. Mobile only.
1140
1147
  *
1141
1148
  * @mobileOnly
1142
1149
  */
1143
1150
  get exportImage(): Operation<ExportMapImageArgs, EnhancedFileData>;
1144
1151
  /**
1145
1152
  * Exports the current configuration of the selected map component as a web
1146
- * map or scene.
1153
+ * map or scene. Web only.
1147
1154
  *
1148
1155
  * @webOnly
1149
1156
  */
1150
1157
  get exportWebMapOrScene(): Operation<HasMaps, PortalItemData>;
1151
1158
  /**
1152
1159
  * Returns markup from the specified map that are intersected by the
1153
- * supplied geometry.
1160
+ * supplied geometry. Web only.
1154
1161
  *
1155
1162
  * @webOnly
1156
1163
  */
1157
1164
  get getMarkup(): Operation<GetMarkupArgs, GetMarkupResult>;
1158
1165
  /**
1159
- * Returns the extent from the specified map.
1166
+ * Returns the extent from the specified map. Web only.
1160
1167
  *
1161
1168
  * @webOnly
1162
1169
  */
1163
1170
  get getExtent(): Operation<GetExtentArgs, GetExtentResult>;
1164
1171
  /**
1165
1172
  * Returns the geometry that is contained within the square overlay of the
1166
- * extent selector.
1173
+ * extent selector. Mobile only.
1167
1174
  *
1168
1175
  * @mobileOnly
1169
1176
  */
@@ -1172,7 +1179,7 @@ export declare class MapOperations extends OperationRegistry {
1172
1179
  * Returns the initial viewpoint for the active map or scene of the
1173
1180
  * specified map. If no map extension is specified, returns the initial
1174
1181
  * viewpoint for the first available map. Also returns the map(s) used for
1175
- * the operation.
1182
+ * the operation. Web only.
1176
1183
  *
1177
1184
  * @webOnly
1178
1185
  */
@@ -1181,7 +1188,7 @@ export declare class MapOperations extends OperationRegistry {
1181
1188
  * Returns the current viewpoint for the active map or scene of the
1182
1189
  * specified map. If no map extension is specified, returns the viewpoint
1183
1190
  * for the first available map. Also returns the map(s) used for the
1184
- * operation.
1191
+ * operation. Web only.
1185
1192
  *
1186
1193
  * @webOnly
1187
1194
  */
@@ -1194,38 +1201,38 @@ export declare class MapOperations extends OperationRegistry {
1194
1201
  get getSpatialReference(): Operation<Maps | void, SpatialReference>;
1195
1202
  /**
1196
1203
  * Returns the point at the center of the visible map area. Accounts for
1197
- * panels displaying overtop of the map.
1204
+ * panels displaying overtop of the map. Mobile only.
1198
1205
  *
1199
1206
  * @mobileOnly
1200
1207
  */
1201
1208
  get getVisibleCenter(): Operation<HasMaps, Point>;
1202
1209
  /**
1203
- * Hides the map.
1210
+ * Hides the map. Mobile only.
1204
1211
  *
1205
1212
  * @mobileOnly
1206
1213
  */
1207
1214
  get hide(): Operation<HideMapArgs, boolean>;
1208
1215
  /**
1209
- * Shows the map if it is hidden.
1216
+ * Shows the map if it is hidden. Mobile only.
1210
1217
  *
1211
1218
  * @mobileOnly
1212
1219
  */
1213
1220
  get show(): Operation<HasMaps, boolean>;
1214
1221
  /**
1215
- * Enables sketching on a map.
1222
+ * Enables sketching on a map. Mobile only.
1216
1223
  *
1217
1224
  * @mobileOnly
1218
1225
  */
1219
1226
  get startSketch(): Operation<StartSketchArgs, Geometry>;
1220
1227
  /**
1221
- * Stops sketching on the map.
1228
+ * Stops sketching on the map. Mobile only.
1222
1229
  *
1223
1230
  * @mobileOnly
1224
1231
  */
1225
1232
  get stopSketch(): Operation<HasMaps, Geometry>;
1226
1233
  /**
1227
1234
  * Returns the amount of the map that is currently covered by insets such as
1228
- * the panel component.
1235
+ * the panel component. Mobile only.
1229
1236
  *
1230
1237
  * @mobileOnly
1231
1238
  */