@vertigis/viewer-spec 50.4.0 → 50.5.1
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/AnalyticsContext.d.ts +2 -1
- package/analytics/CommonAction.d.ts +2 -1
- package/analytics/MobileAction.d.ts +14 -3
- package/app-config/AppConfig.d.ts +11 -8
- package/app-config/common/BrandingThemeProperties.d.ts +4 -2
- package/app-config/common/HighlightModelProperties.d.ts +4 -2
- package/app-config/common/LayerPresetsModelProperties.d.ts +2 -1
- package/app-config/common/LicensingModelProperties.d.ts +1 -1
- package/app-config/common/ResultsModelProperties.d.ts +2 -1
- package/app-config/common/TranslatableText.d.ts +2 -1
- package/app-config/common/WorkflowModelProperties.d.ts +4 -2
- package/app-config/mobile/FeatureDetailsModelProperties.d.ts +4 -2
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +4 -3
- package/app-config/schema/common-app-config.schema.json +1 -1
- 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/CoordinateModelProperties.d.ts +2 -1
- package/app-config/web/DrawModelProperties.d.ts +2 -1
- package/app-config/web/HasVisibilityFilters.d.ts +2 -1
- package/app-config/web/KpiCardModelProperties.d.ts +2 -1
- package/app-config/web/MapCoordinatesModelProperties.d.ts +2 -1
- package/app-config/web/MapModelProperties.d.ts +4 -2
- package/app-config/web/MeasurementModelProperties.d.ts +2 -1
- package/app-config/web/PortalModelProperties.d.ts +2 -1
- package/app-config/web/ResultsModelProperties.d.ts +4 -2
- package/app-config/web/SearchModelProperties.d.ts +2 -1
- package/app-config/web/VertigisWebModelProperties.d.ts +6 -3
- package/docs/Geocortex Apps.md +8 -8
- package/docs/layout-spec.md +105 -94
- package/layout/schema/layout-common.xsd +1 -1
- package/layout/schema/layout-web.xsd +1 -1
- package/messaging/Command.d.ts +4 -2
- package/messaging/Event.d.ts +4 -2
- package/messaging/Message.d.ts +2 -1
- package/messaging/Operation.d.ts +4 -2
- package/messaging/common.d.ts +12 -6
- package/messaging/registry/app.d.ts +12 -6
- package/messaging/registry/arcade.d.ts +6 -3
- package/messaging/registry/auth.d.ts +12 -7
- package/messaging/registry/basemap.d.ts +2 -1
- package/messaging/registry/drawing.d.ts +8 -4
- package/messaging/registry/edit.d.ts +6 -3
- package/messaging/registry/file.d.ts +85 -0
- package/messaging/registry/file.js +1 -1
- package/messaging/registry/geocode.d.ts +8 -5
- package/messaging/registry/geolocation.d.ts +20 -11
- package/messaging/registry/geometry.d.ts +10 -5
- package/messaging/registry/kpi.d.ts +4 -2
- package/messaging/registry/layout.d.ts +2 -1
- package/messaging/registry/location-marker.d.ts +10 -5
- package/messaging/registry/map.d.ts +15 -8
- package/messaging/registry/measurement.d.ts +4 -2
- package/messaging/registry/messaging.d.ts +1 -1
- package/messaging/registry/offline.d.ts +16 -9
- package/messaging/registry/panel.d.ts +2 -1
- package/messaging/registry/portal.d.ts +8 -4
- package/messaging/registry/printing.d.ts +4 -2
- package/messaging/registry/results.d.ts +19 -10
- package/messaging/registry/settings.d.ts +4 -2
- package/messaging/registry/sketching.d.ts +38 -26
- package/messaging/registry/tasks.d.ts +7 -4
- package/messaging/registry/ui.d.ts +14 -7
- package/messaging/registry/viewer.d.ts +2 -1
- package/messaging/registry/workflow.d.ts +6 -3
- package/messaging/schema/common-action.schema.json +269 -236
- package/messaging/schema/common-event.schema.json +118 -122
- package/messaging/schema/mobile-action.schema.json +266 -233
- package/messaging/schema/mobile-event.schema.json +146 -153
- package/messaging/schema/web-action.schema.json +305 -269
- package/messaging/schema/web-event.schema.json +144 -151
- package/package.json +17 -17
- package/version.d.ts +2 -2
- package/version.js +2 -2
|
@@ -128,16 +128,13 @@
|
|
|
128
128
|
"properties": {
|
|
129
129
|
"mapExtension": {
|
|
130
130
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
|
|
131
|
-
"description": "The map extension for which the event was generated."
|
|
131
|
+
"description": "The map extension for which the event was generated. This property is required in VertiGIS Studio Mobile."
|
|
132
132
|
},
|
|
133
133
|
"maps": {
|
|
134
134
|
"$ref": "#/definitions/MapsLike",
|
|
135
135
|
"description": "The map from which the event was generated."
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
|
-
"required": [
|
|
139
|
-
"mapExtension"
|
|
140
|
-
],
|
|
141
138
|
"type": "object"
|
|
142
139
|
},
|
|
143
140
|
"MapInitializedEvent": {
|
|
@@ -150,7 +147,7 @@
|
|
|
150
147
|
},
|
|
151
148
|
"mapExtension": {
|
|
152
149
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
|
|
153
|
-
"description": "The map extension for which the event was generated."
|
|
150
|
+
"description": "The map extension for which the event was generated. This property is required in VertiGIS Studio Mobile."
|
|
154
151
|
},
|
|
155
152
|
"maps": {
|
|
156
153
|
"$ref": "#/definitions/MapsLike",
|
|
@@ -158,8 +155,7 @@
|
|
|
158
155
|
}
|
|
159
156
|
},
|
|
160
157
|
"required": [
|
|
161
|
-
"loadTime"
|
|
162
|
-
"mapExtension"
|
|
158
|
+
"loadTime"
|
|
163
159
|
],
|
|
164
160
|
"type": "object"
|
|
165
161
|
},
|
|
@@ -384,7 +380,7 @@
|
|
|
384
380
|
},
|
|
385
381
|
"SignInFailedEventArgs": {
|
|
386
382
|
"additionalProperties": false,
|
|
387
|
-
"description": "Arguments for the auth.sign-in-failed event. Only available in the
|
|
383
|
+
"description": "Arguments for the auth.sign-in-failed event. Only available in the VertiGIS Studio Mobile Viewer.",
|
|
388
384
|
"properties": {
|
|
389
385
|
"authenticationType": {
|
|
390
386
|
"$ref": "#/definitions/AuthenticationType",
|
|
@@ -624,7 +620,7 @@
|
|
|
624
620
|
},
|
|
625
621
|
"listMode": {
|
|
626
622
|
"$ref": "esri.ListMode",
|
|
627
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
623
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
628
624
|
},
|
|
629
625
|
"maxScale": {
|
|
630
626
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -658,7 +654,7 @@
|
|
|
658
654
|
"type": "string"
|
|
659
655
|
},
|
|
660
656
|
"type": {
|
|
661
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
657
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
662
658
|
"enum": [
|
|
663
659
|
"BingMapsAerial",
|
|
664
660
|
"BingMapsHybrid",
|
|
@@ -903,7 +899,7 @@
|
|
|
903
899
|
},
|
|
904
900
|
"listMode": {
|
|
905
901
|
"$ref": "esri.ListMode",
|
|
906
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
902
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
907
903
|
},
|
|
908
904
|
"locationInfo": {
|
|
909
905
|
"$ref": "#/definitions/esri.rest-api.LocationInfo.LocationInfo",
|
|
@@ -946,7 +942,7 @@
|
|
|
946
942
|
"type": "string"
|
|
947
943
|
},
|
|
948
944
|
"type": {
|
|
949
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
945
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
950
946
|
"enum": [
|
|
951
947
|
"BingMapsAerial",
|
|
952
948
|
"BingMapsHybrid",
|
|
@@ -1099,7 +1095,7 @@
|
|
|
1099
1095
|
},
|
|
1100
1096
|
"esri.rest-api.ClassBreaksRenderer.ClassBreaksRenderer": {
|
|
1101
1097
|
"additionalProperties": false,
|
|
1102
|
-
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a useful approach for some data distributions because it reduced the influence of very large data values. 3. Percent-of-total - Divide the data value by the sum of all data values then multiply by 100. Use the normalizationTotal property to determine the
|
|
1098
|
+
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes. If the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks. 1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property. 2. Log - Compute the base 10 logarithm of the data value. This can be a useful approach for some data distributions because it reduced the influence of very large data values. 3. Percent-of-total - Divide the data value by the sum of all data values then multiply by 100. Use the normalizationTotal property to determine the total value.{@linkhttps://developers.arcgis.com/web-map-specification/objects/classBreaks_renderer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/classBreaksRenderer/}.",
|
|
1103
1099
|
"properties": {
|
|
1104
1100
|
"authoringInfo": {
|
|
1105
1101
|
"$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
|
|
@@ -1201,10 +1197,10 @@
|
|
|
1201
1197
|
},
|
|
1202
1198
|
"rotationType": {
|
|
1203
1199
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
1204
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
1200
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
1205
1201
|
},
|
|
1206
1202
|
"type": {
|
|
1207
|
-
"description": "The type of renderer. See{@
|
|
1203
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
1208
1204
|
"enum": [
|
|
1209
1205
|
"classBreaks"
|
|
1210
1206
|
],
|
|
@@ -1286,7 +1282,7 @@
|
|
|
1286
1282
|
"type": "string"
|
|
1287
1283
|
},
|
|
1288
1284
|
"type": {
|
|
1289
|
-
"description": "Type of domain. See{@
|
|
1285
|
+
"description": "Type of domain. See{@linkportal /Domain!DomainType}.",
|
|
1290
1286
|
"enum": [
|
|
1291
1287
|
"codedValue"
|
|
1292
1288
|
],
|
|
@@ -2006,7 +2002,7 @@
|
|
|
2006
2002
|
"description": "Specifies how graphics are placed on the vertical axis (z). This property may only be used in a SceneView.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/elevationInfo/}.",
|
|
2007
2003
|
"properties": {
|
|
2008
2004
|
"featureExpression": {
|
|
2009
|
-
"description": "Deprecated with 1.8, use featureExpressionInfo instead.
|
|
2005
|
+
"description": "Deprecated with 1.8, use featureExpressionInfo instead. Ignores geometry z-values."
|
|
2010
2006
|
},
|
|
2011
2007
|
"featureExpressionInfo": {
|
|
2012
2008
|
"$ref": "#/definitions/esri.rest-api.ElevationInfo.FeatureExpressionInfo",
|
|
@@ -2017,7 +2013,7 @@
|
|
|
2017
2013
|
"description": "Determines how the service elevation values are combined with the basemap elevation. See{@linkElevationMode}."
|
|
2018
2014
|
},
|
|
2019
2015
|
"offset": {
|
|
2020
|
-
"description": "Offset is always added to the result of the above logic except for
|
|
2016
|
+
"description": "Offset is always added to the result of the above logic except for `\"onTheGround\"` where offset is ignored.",
|
|
2021
2017
|
"type": "number"
|
|
2022
2018
|
},
|
|
2023
2019
|
"unit": {
|
|
@@ -2085,7 +2081,7 @@
|
|
|
2085
2081
|
},
|
|
2086
2082
|
"listMode": {
|
|
2087
2083
|
"$ref": "esri.ListMode",
|
|
2088
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
2084
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
2089
2085
|
},
|
|
2090
2086
|
"maxScale": {
|
|
2091
2087
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -2112,7 +2108,7 @@
|
|
|
2112
2108
|
"type": "string"
|
|
2113
2109
|
},
|
|
2114
2110
|
"type": {
|
|
2115
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
2111
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
2116
2112
|
"enum": [
|
|
2117
2113
|
"BingMapsAerial",
|
|
2118
2114
|
"BingMapsHybrid",
|
|
@@ -2183,7 +2179,7 @@
|
|
|
2183
2179
|
"type": "number"
|
|
2184
2180
|
},
|
|
2185
2181
|
"type": {
|
|
2186
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
2182
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
2187
2183
|
"enum": [
|
|
2188
2184
|
"Extrude"
|
|
2189
2185
|
],
|
|
@@ -2347,7 +2343,7 @@
|
|
|
2347
2343
|
},
|
|
2348
2344
|
"listMode": {
|
|
2349
2345
|
"$ref": "esri.ListMode",
|
|
2350
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
2346
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
2351
2347
|
},
|
|
2352
2348
|
"maxScale": {
|
|
2353
2349
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -2359,7 +2355,7 @@
|
|
|
2359
2355
|
},
|
|
2360
2356
|
"mode": {
|
|
2361
2357
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
2362
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is
|
|
2358
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkportal /FeatureLayer!FeatureLayerMode}."
|
|
2363
2359
|
},
|
|
2364
2360
|
"opacity": {
|
|
2365
2361
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -2397,7 +2393,7 @@
|
|
|
2397
2393
|
"type": "string"
|
|
2398
2394
|
},
|
|
2399
2395
|
"type": {
|
|
2400
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
2396
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
2401
2397
|
"enum": [
|
|
2402
2398
|
"BingMapsAerial",
|
|
2403
2399
|
"BingMapsHybrid",
|
|
@@ -2563,7 +2559,7 @@
|
|
|
2563
2559
|
},
|
|
2564
2560
|
"type": {
|
|
2565
2561
|
"$ref": "#/definitions/esri.rest-api.Field.FieldType",
|
|
2566
|
-
"description": "Type of the Field. See{@
|
|
2562
|
+
"description": "Type of the Field. See{@linkportal /Field!FieldType}."
|
|
2567
2563
|
}
|
|
2568
2564
|
},
|
|
2569
2565
|
"type": "object"
|
|
@@ -2626,7 +2622,7 @@
|
|
|
2626
2622
|
"type": "object"
|
|
2627
2623
|
},
|
|
2628
2624
|
"esri.rest-api.FieldInfo.StringFieldOption": {
|
|
2629
|
-
"description": "The type of string field to use with{@
|
|
2625
|
+
"description": "The type of string field to use with{@linkportal /FieldInfo!FieldInfo.stringFieldOption}..",
|
|
2630
2626
|
"enum": [
|
|
2631
2627
|
"richtext",
|
|
2632
2628
|
"textarea",
|
|
@@ -2659,7 +2655,7 @@
|
|
|
2659
2655
|
"description": "The outline of the point, line or polygon."
|
|
2660
2656
|
},
|
|
2661
2657
|
"type": {
|
|
2662
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
2658
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
2663
2659
|
"enum": [
|
|
2664
2660
|
"Fill"
|
|
2665
2661
|
],
|
|
@@ -3162,7 +3158,7 @@
|
|
|
3162
3158
|
"properties": {
|
|
3163
3159
|
"dateFormat": {
|
|
3164
3160
|
"$ref": "#/definitions/esri.rest-api.Format.DateFormat",
|
|
3165
|
-
"description": "A string used with date fields to specify how the date should appear in pop-up windows. See{@
|
|
3161
|
+
"description": "A string used with date fields to specify how the date should appear in pop-up windows. See{@linkutilities /date!DateFormat}."
|
|
3166
3162
|
},
|
|
3167
3163
|
"digitSeparator": {
|
|
3168
3164
|
"description": "A Boolean used with numerical fields. A value of true allows the number to have a digit (or thousands) separator when the value appears in pop-up windows. Depending on the locale, this separator is a decimal point or a comma. A value of false means that no separator will be used.",
|
|
@@ -3204,7 +3200,7 @@
|
|
|
3204
3200
|
},
|
|
3205
3201
|
"listMode": {
|
|
3206
3202
|
"$ref": "esri.ListMode",
|
|
3207
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
3203
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
3208
3204
|
},
|
|
3209
3205
|
"maxScale": {
|
|
3210
3206
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -3239,7 +3235,7 @@
|
|
|
3239
3235
|
"type": "string"
|
|
3240
3236
|
},
|
|
3241
3237
|
"type": {
|
|
3242
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
3238
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
3243
3239
|
"enum": [
|
|
3244
3240
|
"BingMapsAerial",
|
|
3245
3241
|
"BingMapsHybrid",
|
|
@@ -3318,7 +3314,7 @@
|
|
|
3318
3314
|
},
|
|
3319
3315
|
"listMode": {
|
|
3320
3316
|
"$ref": "esri.ListMode",
|
|
3321
|
-
"description": "To show or hide the group layer in the layer list. See{@
|
|
3317
|
+
"description": "To show or hide the group layer in the layer list. See{@linksupport /esri!ListMode}."
|
|
3322
3318
|
},
|
|
3323
3319
|
"maxScale": {
|
|
3324
3320
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -3345,7 +3341,7 @@
|
|
|
3345
3341
|
"type": "string"
|
|
3346
3342
|
},
|
|
3347
3343
|
"type": {
|
|
3348
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
3344
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
3349
3345
|
"enum": [
|
|
3350
3346
|
"BingMapsAerial",
|
|
3351
3347
|
"BingMapsHybrid",
|
|
@@ -3437,10 +3433,10 @@
|
|
|
3437
3433
|
},
|
|
3438
3434
|
"rotationType": {
|
|
3439
3435
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
3440
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
3436
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
3441
3437
|
},
|
|
3442
3438
|
"type": {
|
|
3443
|
-
"description": "The type of renderer. See{@
|
|
3439
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
3444
3440
|
"enum": [
|
|
3445
3441
|
"heatmap"
|
|
3446
3442
|
],
|
|
@@ -3500,7 +3496,7 @@
|
|
|
3500
3496
|
"type": "number"
|
|
3501
3497
|
},
|
|
3502
3498
|
"type": {
|
|
3503
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
3499
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
3504
3500
|
"enum": [
|
|
3505
3501
|
"Icon"
|
|
3506
3502
|
],
|
|
@@ -3595,7 +3591,7 @@
|
|
|
3595
3591
|
},
|
|
3596
3592
|
"listMode": {
|
|
3597
3593
|
"$ref": "esri.ListMode",
|
|
3598
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
3594
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
3599
3595
|
},
|
|
3600
3596
|
"maxScale": {
|
|
3601
3597
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -3650,7 +3646,7 @@
|
|
|
3650
3646
|
"type": "string"
|
|
3651
3647
|
},
|
|
3652
3648
|
"type": {
|
|
3653
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
3649
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
3654
3650
|
"enum": [
|
|
3655
3651
|
"BingMapsAerial",
|
|
3656
3652
|
"BingMapsHybrid",
|
|
@@ -3725,7 +3721,7 @@
|
|
|
3725
3721
|
},
|
|
3726
3722
|
"listMode": {
|
|
3727
3723
|
"$ref": "esri.ListMode",
|
|
3728
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
3724
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
3729
3725
|
},
|
|
3730
3726
|
"maxScale": {
|
|
3731
3727
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -3760,7 +3756,7 @@
|
|
|
3760
3756
|
"type": "string"
|
|
3761
3757
|
},
|
|
3762
3758
|
"type": {
|
|
3763
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
3759
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
3764
3760
|
"enum": [
|
|
3765
3761
|
"BingMapsAerial",
|
|
3766
3762
|
"BingMapsHybrid",
|
|
@@ -3835,7 +3831,7 @@
|
|
|
3835
3831
|
},
|
|
3836
3832
|
"listMode": {
|
|
3837
3833
|
"$ref": "esri.ListMode",
|
|
3838
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
3834
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
3839
3835
|
},
|
|
3840
3836
|
"maxScale": {
|
|
3841
3837
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -3862,7 +3858,7 @@
|
|
|
3862
3858
|
"type": "string"
|
|
3863
3859
|
},
|
|
3864
3860
|
"type": {
|
|
3865
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
3861
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
3866
3862
|
"enum": [
|
|
3867
3863
|
"BingMapsAerial",
|
|
3868
3864
|
"BingMapsHybrid",
|
|
@@ -3928,7 +3924,7 @@
|
|
|
3928
3924
|
"description": "The right table source."
|
|
3929
3925
|
},
|
|
3930
3926
|
"type": {
|
|
3931
|
-
"description": "Type of the DataSource.{@
|
|
3927
|
+
"description": "Type of the DataSource.{@linkportal /DataSource!DataSourceType}.",
|
|
3932
3928
|
"enum": [
|
|
3933
3929
|
"joinTable"
|
|
3934
3930
|
],
|
|
@@ -3981,7 +3977,7 @@
|
|
|
3981
3977
|
},
|
|
3982
3978
|
"listMode": {
|
|
3983
3979
|
"$ref": "esri.ListMode",
|
|
3984
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
3980
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
3985
3981
|
},
|
|
3986
3982
|
"maxScale": {
|
|
3987
3983
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -4008,7 +4004,7 @@
|
|
|
4008
4004
|
"type": "string"
|
|
4009
4005
|
},
|
|
4010
4006
|
"type": {
|
|
4011
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
4007
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
4012
4008
|
"enum": [
|
|
4013
4009
|
"BingMapsAerial",
|
|
4014
4010
|
"BingMapsHybrid",
|
|
@@ -4058,7 +4054,7 @@
|
|
|
4058
4054
|
"type": "array"
|
|
4059
4055
|
},
|
|
4060
4056
|
"type": {
|
|
4061
|
-
"description": "The type of symbol. See{@
|
|
4057
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
4062
4058
|
"enum": [
|
|
4063
4059
|
"LabelSymbol3D"
|
|
4064
4060
|
],
|
|
@@ -4583,7 +4579,7 @@
|
|
|
4583
4579
|
},
|
|
4584
4580
|
"esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
|
|
4585
4581
|
"additionalProperties": false,
|
|
4586
|
-
"description": "The default time-related export options for a layer.
|
|
4582
|
+
"description": "The default time-related export options for a layer. See https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/.",
|
|
4587
4583
|
"properties": {
|
|
4588
4584
|
"timeDataCumulative": {
|
|
4589
4585
|
"description": "If true, draw all the features from the beginning of time for that data.",
|
|
@@ -4623,7 +4619,7 @@
|
|
|
4623
4619
|
"type": "array"
|
|
4624
4620
|
},
|
|
4625
4621
|
"type": {
|
|
4626
|
-
"description": "The type of symbol. See{@
|
|
4622
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
4627
4623
|
"enum": [
|
|
4628
4624
|
"LineSymbol3D"
|
|
4629
4625
|
],
|
|
@@ -4653,7 +4649,7 @@
|
|
|
4653
4649
|
"type": "number"
|
|
4654
4650
|
},
|
|
4655
4651
|
"type": {
|
|
4656
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
4652
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
4657
4653
|
"enum": [
|
|
4658
4654
|
"Line"
|
|
4659
4655
|
],
|
|
@@ -4727,7 +4723,7 @@
|
|
|
4727
4723
|
},
|
|
4728
4724
|
"listMode": {
|
|
4729
4725
|
"$ref": "esri.ListMode",
|
|
4730
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
4726
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
4731
4727
|
},
|
|
4732
4728
|
"maxScale": {
|
|
4733
4729
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -4758,7 +4754,7 @@
|
|
|
4758
4754
|
"type": "string"
|
|
4759
4755
|
},
|
|
4760
4756
|
"type": {
|
|
4761
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
4757
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
4762
4758
|
"enum": [
|
|
4763
4759
|
"BingMapsAerial",
|
|
4764
4760
|
"BingMapsHybrid",
|
|
@@ -4794,10 +4790,10 @@
|
|
|
4794
4790
|
},
|
|
4795
4791
|
"esri.rest-api.MediaInfo.MediaInfo": {
|
|
4796
4792
|
"additionalProperties": false,
|
|
4797
|
-
"description": "Defines an image or a chart to be displayed in a pop-up window.
|
|
4793
|
+
"description": "Defines an image or a chart to be displayed in a pop-up window. See https://developers.arcgis.com/web-map-specification/objects/mediaInfo/ and https://developers.arcgis.com/web-scene-specification/objects/mediaInfo/.",
|
|
4798
4794
|
"properties": {
|
|
4799
4795
|
"caption": {
|
|
4800
|
-
"description": "A caption describing the media. This can contain a field name enclosed in {}
|
|
4796
|
+
"description": "A caption describing the media. This can contain a field name enclosed in `{}`, such as `{IMAGE_CAPTION}`.",
|
|
4801
4797
|
"type": "string"
|
|
4802
4798
|
},
|
|
4803
4799
|
"refreshInterval": {
|
|
@@ -4805,7 +4801,7 @@
|
|
|
4805
4801
|
"type": "number"
|
|
4806
4802
|
},
|
|
4807
4803
|
"title": {
|
|
4808
|
-
"description": "A title for the media. This can contain a field name enclosed in {}
|
|
4804
|
+
"description": "A title for the media. This can contain a field name enclosed in `{}`, such as `{IMAGE_TITLE}`.",
|
|
4809
4805
|
"type": "string"
|
|
4810
4806
|
},
|
|
4811
4807
|
"type": {
|
|
@@ -4831,7 +4827,7 @@
|
|
|
4831
4827
|
"type": "array"
|
|
4832
4828
|
},
|
|
4833
4829
|
"type": {
|
|
4834
|
-
"description": "The type of symbol. See{@
|
|
4830
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
4835
4831
|
"enum": [
|
|
4836
4832
|
"MeshSymbol3D"
|
|
4837
4833
|
],
|
|
@@ -4903,10 +4899,10 @@
|
|
|
4903
4899
|
},
|
|
4904
4900
|
"mosaicOperation": {
|
|
4905
4901
|
"$ref": "#/definitions/esri.rest-api.MosaicRule.MosaicOperationType",
|
|
4906
|
-
"description": "Use the mosaic operation to resolve overlap pixel values: from first or last raster, use the min, max or mean of the pixel values, or blend them. See
|
|
4902
|
+
"description": "Use the mosaic operation to resolve overlap pixel values: from first or last raster, use the min, max or mean of the pixel values, or blend them. See{@linkMosaicOperationType}."
|
|
4907
4903
|
},
|
|
4908
4904
|
"multidimensionalDefinition": {
|
|
4909
|
-
"description": "Definition of multidimensional variables.
|
|
4905
|
+
"description": "Definition of multidimensional variables. See https://developers.arcgis.com/web-map-specification/objects/multidimensionalDefinition/ and https://developers.arcgis.com/web-scene-specification/objects/multidimensionalDefinition/.",
|
|
4910
4906
|
"items": {
|
|
4911
4907
|
"$ref": "__type"
|
|
4912
4908
|
},
|
|
@@ -5003,7 +4999,7 @@
|
|
|
5003
4999
|
"description": "The shape (primitive) or image URL (href) used to visualize the features."
|
|
5004
5000
|
},
|
|
5005
5001
|
"type": {
|
|
5006
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
5002
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
5007
5003
|
"enum": [
|
|
5008
5004
|
"Object"
|
|
5009
5005
|
],
|
|
@@ -5032,7 +5028,7 @@
|
|
|
5032
5028
|
"type": "number"
|
|
5033
5029
|
},
|
|
5034
5030
|
"type": {
|
|
5035
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
5031
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
5036
5032
|
"enum": [
|
|
5037
5033
|
"Path"
|
|
5038
5034
|
],
|
|
@@ -5073,7 +5069,7 @@
|
|
|
5073
5069
|
"description": "Sets the outline of the symbol."
|
|
5074
5070
|
},
|
|
5075
5071
|
"type": {
|
|
5076
|
-
"description": "The type of symbol. See{@
|
|
5072
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
5077
5073
|
"enum": [
|
|
5078
5074
|
"esriPFS"
|
|
5079
5075
|
],
|
|
@@ -5130,7 +5126,7 @@
|
|
|
5130
5126
|
"type": "string"
|
|
5131
5127
|
},
|
|
5132
5128
|
"type": {
|
|
5133
|
-
"description": "The type of symbol. See{@
|
|
5129
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
5134
5130
|
"enum": [
|
|
5135
5131
|
"esriPMS"
|
|
5136
5132
|
],
|
|
@@ -5288,10 +5284,10 @@
|
|
|
5288
5284
|
},
|
|
5289
5285
|
"rotationType": {
|
|
5290
5286
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
5291
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
5287
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
5292
5288
|
},
|
|
5293
5289
|
"type": {
|
|
5294
|
-
"description": "The type of renderer. See{@
|
|
5290
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
5295
5291
|
"enum": [
|
|
5296
5292
|
"pointCloudClassBreaksRenderer"
|
|
5297
5293
|
],
|
|
@@ -5369,7 +5365,7 @@
|
|
|
5369
5365
|
},
|
|
5370
5366
|
"listMode": {
|
|
5371
5367
|
"$ref": "esri.ListMode",
|
|
5372
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
5368
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
5373
5369
|
},
|
|
5374
5370
|
"maxScale": {
|
|
5375
5371
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -5400,7 +5396,7 @@
|
|
|
5400
5396
|
"type": "string"
|
|
5401
5397
|
},
|
|
5402
5398
|
"type": {
|
|
5403
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
5399
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
5404
5400
|
"enum": [
|
|
5405
5401
|
"BingMapsAerial",
|
|
5406
5402
|
"BingMapsHybrid",
|
|
@@ -5475,10 +5471,10 @@
|
|
|
5475
5471
|
},
|
|
5476
5472
|
"rotationType": {
|
|
5477
5473
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
5478
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
5474
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
5479
5475
|
},
|
|
5480
5476
|
"type": {
|
|
5481
|
-
"description": "The type of renderer. See{@
|
|
5477
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
5482
5478
|
"enum": [
|
|
5483
5479
|
"pointCloudRGBRenderer"
|
|
5484
5480
|
],
|
|
@@ -5599,10 +5595,10 @@
|
|
|
5599
5595
|
},
|
|
5600
5596
|
"rotationType": {
|
|
5601
5597
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
5602
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
5598
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
5603
5599
|
},
|
|
5604
5600
|
"type": {
|
|
5605
|
-
"description": "The type of renderer. See{@
|
|
5601
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
5606
5602
|
"enum": [
|
|
5607
5603
|
"pointCloudStretchRenderer"
|
|
5608
5604
|
],
|
|
@@ -5677,10 +5673,10 @@
|
|
|
5677
5673
|
},
|
|
5678
5674
|
"rotationType": {
|
|
5679
5675
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
5680
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
5676
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
5681
5677
|
},
|
|
5682
5678
|
"type": {
|
|
5683
|
-
"description": "The type of renderer. See{@
|
|
5679
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
5684
5680
|
"enum": [
|
|
5685
5681
|
"pointCloudUniqueValueRenderer"
|
|
5686
5682
|
],
|
|
@@ -5759,7 +5755,7 @@
|
|
|
5759
5755
|
"type": "array"
|
|
5760
5756
|
},
|
|
5761
5757
|
"type": {
|
|
5762
|
-
"description": "The type of symbol. See{@
|
|
5758
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
5763
5759
|
"enum": [
|
|
5764
5760
|
"PointSymbol3D"
|
|
5765
5761
|
],
|
|
@@ -5833,7 +5829,7 @@
|
|
|
5833
5829
|
"type": "array"
|
|
5834
5830
|
},
|
|
5835
5831
|
"type": {
|
|
5836
|
-
"description": "The type of symbol. See{@
|
|
5832
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
5837
5833
|
"enum": [
|
|
5838
5834
|
"PolygonSymbol3D"
|
|
5839
5835
|
],
|
|
@@ -5929,7 +5925,7 @@
|
|
|
5929
5925
|
},
|
|
5930
5926
|
"esri.rest-api.PopupInfo.PopupElement": {
|
|
5931
5927
|
"additionalProperties": false,
|
|
5932
|
-
"description": "Popup elements allow users to author popups, using multiple elements such as tabular views, string description, media (charts and images), and attachments of the attributes and control the order in which they appear. Specifically, popupElements do the following: 1) provide the ability to explicitly add a field/ value table in addition to a description, 2) allow adding multiple description elements, and 3) allow a user to author and consume elements of a popup in the order of their choosing. Each popupElement has a type property. This string value indicates the type of popupElement used.
|
|
5928
|
+
"description": "Popup elements allow users to author popups, using multiple elements such as tabular views, string description, media (charts and images), and attachments of the attributes and control the order in which they appear. Specifically, popupElements do the following: 1) provide the ability to explicitly add a field/ value table in addition to a description, 2) allow adding multiple description elements, and 3) allow a user to author and consume elements of a popup in the order of their choosing. Each popupElement has a type property. This string value indicates the type of popupElement used. See https://developers.arcgis.com/web-map-specification/objects/popupElement/ and https://developers.arcgis.com/web-scene-specification/objects/popupElement/.",
|
|
5933
5929
|
"properties": {
|
|
5934
5930
|
"displayType": {
|
|
5935
5931
|
"description": "This property applies to elements of type attachments. A string value indicating how to display the attachment. Possible values are, preview, and list. If list is specified, attachments show as links.",
|
|
@@ -5972,10 +5968,10 @@
|
|
|
5972
5968
|
},
|
|
5973
5969
|
"esri.rest-api.PopupInfo.PopupInfo": {
|
|
5974
5970
|
"additionalProperties": false,
|
|
5975
|
-
"description": "Defines the look and feel of pop-up windows when users click or query a feature.
|
|
5971
|
+
"description": "Defines the look and feel of pop-up windows when users click or query a feature. See https://developers.arcgis.com/web-map-specification/objects/popupInfo/ and https://developers.arcgis.com/web-scene-specification/objects/popupInfo/.",
|
|
5976
5972
|
"properties": {
|
|
5977
5973
|
"description": {
|
|
5978
|
-
"description": "A string that appears in the body of the pop-up window as a description. This can contain a field name enclosed in {}
|
|
5974
|
+
"description": "A string that appears in the body of the pop-up window as a description. This can contain a field name enclosed in `{}`, such as `{DETAILS}`.",
|
|
5979
5975
|
"type": "string"
|
|
5980
5976
|
},
|
|
5981
5977
|
"expressionInfos": {
|
|
@@ -5986,7 +5982,7 @@
|
|
|
5986
5982
|
"type": "array"
|
|
5987
5983
|
},
|
|
5988
5984
|
"fieldInfos": {
|
|
5989
|
-
"description": "An array of{@
|
|
5985
|
+
"description": "An array of{@linkportal /FieldInfo!FieldInfo}objects defining how each field in the dataset participates (or does not participate) in the pop-up window. The order of the array is the order that fields are shown in the pop-up window.",
|
|
5990
5986
|
"items": {
|
|
5991
5987
|
"$ref": "#/definitions/esri.rest-api.FieldInfo.FieldInfo"
|
|
5992
5988
|
},
|
|
@@ -6015,7 +6011,7 @@
|
|
|
6015
6011
|
"type": "boolean"
|
|
6016
6012
|
},
|
|
6017
6013
|
"title": {
|
|
6018
|
-
"description": "Appears at the top of the pop-up window as a title. This can contain a field name enclosed in {}
|
|
6014
|
+
"description": "Appears at the top of the pop-up window as a title. This can contain a field name enclosed in `{}`, such as `{NAME}`.",
|
|
6019
6015
|
"type": "string"
|
|
6020
6016
|
}
|
|
6021
6017
|
},
|
|
@@ -6068,10 +6064,10 @@
|
|
|
6068
6064
|
},
|
|
6069
6065
|
"rotationType": {
|
|
6070
6066
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
6071
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
6067
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
6072
6068
|
},
|
|
6073
6069
|
"type": {
|
|
6074
|
-
"description": "The type of renderer. See{@
|
|
6070
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
6075
6071
|
"enum": [
|
|
6076
6072
|
"predominance"
|
|
6077
6073
|
],
|
|
@@ -6127,7 +6123,7 @@
|
|
|
6127
6123
|
"description": "The spatial reference of the geometry column. When querying a table that does not have a geometry column, do not include spatialReference."
|
|
6128
6124
|
},
|
|
6129
6125
|
"type": {
|
|
6130
|
-
"description": "Type of the DataSource.{@
|
|
6126
|
+
"description": "Type of the DataSource.{@linkportal /DataSource!DataSourceType}.",
|
|
6131
6127
|
"enum": [
|
|
6132
6128
|
"queryTable"
|
|
6133
6129
|
],
|
|
@@ -6159,7 +6155,7 @@
|
|
|
6159
6155
|
"type": "array"
|
|
6160
6156
|
},
|
|
6161
6157
|
"type": {
|
|
6162
|
-
"description": "Type of domain. See{@
|
|
6158
|
+
"description": "Type of domain. See{@linkportal /Domain!DomainType}.",
|
|
6163
6159
|
"enum": [
|
|
6164
6160
|
"range"
|
|
6165
6161
|
],
|
|
@@ -6235,7 +6231,7 @@
|
|
|
6235
6231
|
"type": "string"
|
|
6236
6232
|
},
|
|
6237
6233
|
"type": {
|
|
6238
|
-
"description": "Type of the DataSource.{@
|
|
6234
|
+
"description": "Type of the DataSource.{@linkportal /DataSource!DataSourceType}.",
|
|
6239
6235
|
"enum": [
|
|
6240
6236
|
"raster"
|
|
6241
6237
|
],
|
|
@@ -6508,7 +6504,7 @@
|
|
|
6508
6504
|
},
|
|
6509
6505
|
"listMode": {
|
|
6510
6506
|
"$ref": "esri.ListMode",
|
|
6511
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
6507
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
6512
6508
|
},
|
|
6513
6509
|
"maxScale": {
|
|
6514
6510
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -6547,7 +6543,7 @@
|
|
|
6547
6543
|
"type": "string"
|
|
6548
6544
|
},
|
|
6549
6545
|
"type": {
|
|
6550
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
6546
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
6551
6547
|
"enum": [
|
|
6552
6548
|
"BingMapsAerial",
|
|
6553
6549
|
"BingMapsHybrid",
|
|
@@ -6605,7 +6601,7 @@
|
|
|
6605
6601
|
"description": "The fill style. See{@linkSimpleFillStyle}."
|
|
6606
6602
|
},
|
|
6607
6603
|
"type": {
|
|
6608
|
-
"description": "The type of symbol. See{@
|
|
6604
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
6609
6605
|
"enum": [
|
|
6610
6606
|
"esriSFS"
|
|
6611
6607
|
],
|
|
@@ -6642,7 +6638,7 @@
|
|
|
6642
6638
|
"description": "The line style. See{@linkSimpleLineStyle}."
|
|
6643
6639
|
},
|
|
6644
6640
|
"type": {
|
|
6645
|
-
"description": "The type of symbol. See{@
|
|
6641
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
6646
6642
|
"enum": [
|
|
6647
6643
|
"esriSLS"
|
|
6648
6644
|
],
|
|
@@ -6696,7 +6692,7 @@
|
|
|
6696
6692
|
"description": "The marker style. See{@linkSimpleMarkerStyle}."
|
|
6697
6693
|
},
|
|
6698
6694
|
"type": {
|
|
6699
|
-
"description": "The type of symbol. See{@
|
|
6695
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
6700
6696
|
"enum": [
|
|
6701
6697
|
"esriSMS"
|
|
6702
6698
|
],
|
|
@@ -6738,7 +6734,7 @@
|
|
|
6738
6734
|
},
|
|
6739
6735
|
"rotationType": {
|
|
6740
6736
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
6741
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
6737
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
6742
6738
|
},
|
|
6743
6739
|
"symbol": {
|
|
6744
6740
|
"anyOf": [
|
|
@@ -6785,7 +6781,7 @@
|
|
|
6785
6781
|
"description": "An object that represents how all features will be drawn."
|
|
6786
6782
|
},
|
|
6787
6783
|
"type": {
|
|
6788
|
-
"description": "The type of renderer. See{@
|
|
6784
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
6789
6785
|
"enum": [
|
|
6790
6786
|
"simple"
|
|
6791
6787
|
],
|
|
@@ -6893,7 +6889,7 @@
|
|
|
6893
6889
|
},
|
|
6894
6890
|
"listMode": {
|
|
6895
6891
|
"$ref": "esri.ListMode",
|
|
6896
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
6892
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
6897
6893
|
},
|
|
6898
6894
|
"maxScale": {
|
|
6899
6895
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -6905,7 +6901,7 @@
|
|
|
6905
6901
|
},
|
|
6906
6902
|
"mode": {
|
|
6907
6903
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
|
|
6908
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is
|
|
6904
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkportal /FeatureLayer!FeatureLayerMode}."
|
|
6909
6905
|
},
|
|
6910
6906
|
"opacity": {
|
|
6911
6907
|
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
@@ -6943,7 +6939,7 @@
|
|
|
6943
6939
|
"type": "string"
|
|
6944
6940
|
},
|
|
6945
6941
|
"type": {
|
|
6946
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
6942
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
6947
6943
|
"enum": [
|
|
6948
6944
|
"BingMapsAerial",
|
|
6949
6945
|
"BingMapsHybrid",
|
|
@@ -7037,7 +7033,7 @@
|
|
|
7037
7033
|
},
|
|
7038
7034
|
"listMode": {
|
|
7039
7035
|
"$ref": "esri.ListMode",
|
|
7040
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
7036
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
7041
7037
|
},
|
|
7042
7038
|
"maxScale": {
|
|
7043
7039
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -7064,7 +7060,7 @@
|
|
|
7064
7060
|
"type": "string"
|
|
7065
7061
|
},
|
|
7066
7062
|
"type": {
|
|
7067
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
7063
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
7068
7064
|
"enum": [
|
|
7069
7065
|
"BingMapsAerial",
|
|
7070
7066
|
"BingMapsHybrid",
|
|
@@ -7208,7 +7204,7 @@
|
|
|
7208
7204
|
"description": "Color is represented as a three or four-element array."
|
|
7209
7205
|
},
|
|
7210
7206
|
"colorMixMode": {
|
|
7211
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D. - Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color. - Replace: the feature's color is replaced with the symbol / visual
|
|
7207
|
+
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D. - Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color. - Replace: the feature's color is replaced with the symbol / visual variable color. - Multiply: the feature's color is multiplied with the symbol color.",
|
|
7212
7208
|
"enum": [
|
|
7213
7209
|
"multiply",
|
|
7214
7210
|
"replace",
|
|
@@ -7319,7 +7315,7 @@
|
|
|
7319
7315
|
"type": "string"
|
|
7320
7316
|
},
|
|
7321
7317
|
"type": {
|
|
7322
|
-
"description": "Type of the DataSource.{@
|
|
7318
|
+
"description": "Type of the DataSource.{@linkportal /DataSource!DataSourceType}.",
|
|
7323
7319
|
"enum": [
|
|
7324
7320
|
"table"
|
|
7325
7321
|
],
|
|
@@ -7399,14 +7395,14 @@
|
|
|
7399
7395
|
},
|
|
7400
7396
|
"rotationType": {
|
|
7401
7397
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
7402
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
7398
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
7403
7399
|
},
|
|
7404
7400
|
"trackRenderer": {
|
|
7405
7401
|
"$ref": "#/definitions/esri.rest-api.SimpleRenderer.SimpleRenderer",
|
|
7406
7402
|
"description": "Simple renderer used to symbolize the tracks."
|
|
7407
7403
|
},
|
|
7408
7404
|
"type": {
|
|
7409
|
-
"description": "The type of renderer. See{@
|
|
7405
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
7410
7406
|
"enum": [
|
|
7411
7407
|
"temporal"
|
|
7412
7408
|
],
|
|
@@ -7464,7 +7460,7 @@
|
|
|
7464
7460
|
},
|
|
7465
7461
|
"horizontalAlignment": {
|
|
7466
7462
|
"$ref": "#/definitions/esri.rest-api.Symbol.HorizontalAlignment",
|
|
7467
|
-
"description": "The horizontal alignment of the text. See{@
|
|
7463
|
+
"description": "The horizontal alignment of the text. See{@linkportal /Symbol!HorizontalAlignment}."
|
|
7468
7464
|
},
|
|
7469
7465
|
"kerning": {
|
|
7470
7466
|
"description": "Boolean value indicating whether to adjust the spacing between characters in the text string.",
|
|
@@ -7483,7 +7479,7 @@
|
|
|
7483
7479
|
"type": "string"
|
|
7484
7480
|
},
|
|
7485
7481
|
"type": {
|
|
7486
|
-
"description": "The type of symbol. See{@
|
|
7482
|
+
"description": "The type of symbol. See{@linkportal /Symbol!SymbolType}.",
|
|
7487
7483
|
"enum": [
|
|
7488
7484
|
"esriTS"
|
|
7489
7485
|
],
|
|
@@ -7491,7 +7487,7 @@
|
|
|
7491
7487
|
},
|
|
7492
7488
|
"verticalAlignment": {
|
|
7493
7489
|
"$ref": "#/definitions/esri.rest-api.Symbol.VerticalAlignment",
|
|
7494
|
-
"description": "The vertical alignment of the text. See{@
|
|
7490
|
+
"description": "The vertical alignment of the text. See{@linkportal /Symbol!VerticalAlignment}."
|
|
7495
7491
|
},
|
|
7496
7492
|
"xoffset": {
|
|
7497
7493
|
"description": "Numeric value indicating the offset on the x-axis in pixels.",
|
|
@@ -7528,7 +7524,7 @@
|
|
|
7528
7524
|
"type": "string"
|
|
7529
7525
|
},
|
|
7530
7526
|
"type": {
|
|
7531
|
-
"description": "The type of the Symbol3DLayer. See{@
|
|
7527
|
+
"description": "The type of the Symbol3DLayer. See{@linkportal /Symbol3D!Symbol3DLayerType}.",
|
|
7532
7528
|
"enum": [
|
|
7533
7529
|
"Text"
|
|
7534
7530
|
],
|
|
@@ -7618,7 +7614,7 @@
|
|
|
7618
7614
|
},
|
|
7619
7615
|
"listMode": {
|
|
7620
7616
|
"$ref": "esri.ListMode",
|
|
7621
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
7617
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
7622
7618
|
},
|
|
7623
7619
|
"maxScale": {
|
|
7624
7620
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -7645,7 +7641,7 @@
|
|
|
7645
7641
|
"type": "string"
|
|
7646
7642
|
},
|
|
7647
7643
|
"type": {
|
|
7648
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
7644
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
7649
7645
|
"enum": [
|
|
7650
7646
|
"BingMapsAerial",
|
|
7651
7647
|
"BingMapsHybrid",
|
|
@@ -7727,7 +7723,7 @@
|
|
|
7727
7723
|
},
|
|
7728
7724
|
"listMode": {
|
|
7729
7725
|
"$ref": "esri.ListMode",
|
|
7730
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
7726
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
7731
7727
|
},
|
|
7732
7728
|
"maxScale": {
|
|
7733
7729
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -7758,7 +7754,7 @@
|
|
|
7758
7754
|
"type": "string"
|
|
7759
7755
|
},
|
|
7760
7756
|
"type": {
|
|
7761
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
7757
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
7762
7758
|
"enum": [
|
|
7763
7759
|
"BingMapsAerial",
|
|
7764
7760
|
"BingMapsHybrid",
|
|
@@ -7840,7 +7836,7 @@
|
|
|
7840
7836
|
},
|
|
7841
7837
|
"rotationType": {
|
|
7842
7838
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
7843
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
7839
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
7844
7840
|
},
|
|
7845
7841
|
"styleName": {
|
|
7846
7842
|
"description": "A registered web style name. Can not be used in conjunction with styleName.",
|
|
@@ -7851,7 +7847,7 @@
|
|
|
7851
7847
|
"type": "string"
|
|
7852
7848
|
},
|
|
7853
7849
|
"type": {
|
|
7854
|
-
"description": "The type of renderer. See{@
|
|
7850
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
7855
7851
|
"enum": [
|
|
7856
7852
|
"uniqueValue"
|
|
7857
7853
|
],
|
|
@@ -8021,10 +8017,10 @@
|
|
|
8021
8017
|
},
|
|
8022
8018
|
"rotationType": {
|
|
8023
8019
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
8024
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
8020
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
8025
8021
|
},
|
|
8026
8022
|
"type": {
|
|
8027
|
-
"description": "The type of renderer. See{@
|
|
8023
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
8028
8024
|
"enum": [
|
|
8029
8025
|
"uniqueValue"
|
|
8030
8026
|
],
|
|
@@ -8131,7 +8127,7 @@
|
|
|
8131
8127
|
},
|
|
8132
8128
|
"rotationType": {
|
|
8133
8129
|
"$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
|
|
8134
|
-
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@
|
|
8130
|
+
"description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See{@linkportal /Renderer!RotationType}."
|
|
8135
8131
|
},
|
|
8136
8132
|
"style": {
|
|
8137
8133
|
"description": "A predefined style.",
|
|
@@ -8155,7 +8151,7 @@
|
|
|
8155
8151
|
"type": "number"
|
|
8156
8152
|
},
|
|
8157
8153
|
"type": {
|
|
8158
|
-
"description": "The type of renderer. See{@
|
|
8154
|
+
"description": "The type of renderer. See{@linkportal /Renderer!RendererType}.",
|
|
8159
8155
|
"enum": [
|
|
8160
8156
|
"vectorField"
|
|
8161
8157
|
],
|
|
@@ -8214,7 +8210,7 @@
|
|
|
8214
8210
|
},
|
|
8215
8211
|
"listMode": {
|
|
8216
8212
|
"$ref": "esri.ListMode",
|
|
8217
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
8213
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
8218
8214
|
},
|
|
8219
8215
|
"maxScale": {
|
|
8220
8216
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -8249,7 +8245,7 @@
|
|
|
8249
8245
|
"type": "string"
|
|
8250
8246
|
},
|
|
8251
8247
|
"type": {
|
|
8252
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
8248
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
8253
8249
|
"enum": [
|
|
8254
8250
|
"BingMapsAerial",
|
|
8255
8251
|
"BingMapsHybrid",
|
|
@@ -8723,7 +8719,7 @@
|
|
|
8723
8719
|
},
|
|
8724
8720
|
"listMode": {
|
|
8725
8721
|
"$ref": "esri.ListMode",
|
|
8726
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
8722
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
8727
8723
|
},
|
|
8728
8724
|
"mapUrl": {
|
|
8729
8725
|
"description": "The URL of the WMS map. You should also supply the url property, which is the URL of the WMS capabilities document.",
|
|
@@ -8769,7 +8765,7 @@
|
|
|
8769
8765
|
"type": "string"
|
|
8770
8766
|
},
|
|
8771
8767
|
"type": {
|
|
8772
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
8768
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
8773
8769
|
"enum": [
|
|
8774
8770
|
"BingMapsAerial",
|
|
8775
8771
|
"BingMapsHybrid",
|
|
@@ -8900,7 +8896,7 @@
|
|
|
8900
8896
|
},
|
|
8901
8897
|
"listMode": {
|
|
8902
8898
|
"$ref": "esri.ListMode",
|
|
8903
|
-
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@
|
|
8899
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linksupport /esri!ListMode}."
|
|
8904
8900
|
},
|
|
8905
8901
|
"maxScale": {
|
|
8906
8902
|
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
@@ -8923,14 +8919,14 @@
|
|
|
8923
8919
|
"type": "boolean"
|
|
8924
8920
|
},
|
|
8925
8921
|
"subDomains": {
|
|
8926
|
-
"description": "If sub-domains are detected, they must be specified. The map viewer detects if the Web Tile Layer has sub-domains by parsing the templateURL value for {subDomain}
|
|
8922
|
+
"description": "If sub-domains are detected, they must be specified. The map viewer detects if the Web Tile Layer has sub-domains by parsing the templateURL value for `{subDomain}`.",
|
|
8927
8923
|
"items": {
|
|
8928
8924
|
"type": "string"
|
|
8929
8925
|
},
|
|
8930
8926
|
"type": "array"
|
|
8931
8927
|
},
|
|
8932
8928
|
"templateUrl": {
|
|
8933
|
-
"description": "URL to the Web Tile Layer. Input required by the user when the layer is added to the web scene. The template URL contains a parameterized URL. The URL can contain the following template parameters:
|
|
8929
|
+
"description": "URL to the Web Tile Layer. Input required by the user when the layer is added to the web scene. The template URL contains a parameterized URL. The URL can contain the following template parameters: `{level}`, `{col}`, `{row}`, and `{subDomain}`.",
|
|
8934
8930
|
"type": "string"
|
|
8935
8931
|
},
|
|
8936
8932
|
"tileInfo": {
|
|
@@ -8942,7 +8938,7 @@
|
|
|
8942
8938
|
"type": "string"
|
|
8943
8939
|
},
|
|
8944
8940
|
"type": {
|
|
8945
|
-
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@
|
|
8941
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkportal /OperationalLayer!LegacyOperationalLayerType}and{@linkportal /BaseMapLayer!LegacyBaseMapLayerType}.",
|
|
8946
8942
|
"enum": [
|
|
8947
8943
|
"BingMapsAerial",
|
|
8948
8944
|
"BingMapsHybrid",
|
|
@@ -9016,7 +9012,7 @@
|
|
|
9016
9012
|
"$ref": "#/definitions/GeolocateAccuracyChangedEventArgs"
|
|
9017
9013
|
},
|
|
9018
9014
|
"geolocation.auto-recenter-started": {
|
|
9019
|
-
"description": "Raised when geolocation enters auto recenter mode. For
|
|
9015
|
+
"description": "Raised when geolocation enters auto recenter mode. For VertiGIS Studio Web Viewer, the event will have no parameter (all maps are always affected).",
|
|
9020
9016
|
"enum": [
|
|
9021
9017
|
"geolocation.auto-recenter-started"
|
|
9022
9018
|
]
|
|
@@ -9032,7 +9028,7 @@
|
|
|
9032
9028
|
]
|
|
9033
9029
|
},
|
|
9034
9030
|
"geolocation.auto-recenter-stopped": {
|
|
9035
|
-
"description": "Raised when geolocation leaves auto recenter mode. For
|
|
9031
|
+
"description": "Raised when geolocation leaves auto recenter mode. For VertiGIS Studio Web Viewer, the event will have no parameter (all maps are always affected).",
|
|
9036
9032
|
"enum": [
|
|
9037
9033
|
"geolocation.auto-recenter-stopped"
|
|
9038
9034
|
]
|