@vertigis/viewer-spec 51.6.0 → 51.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/messaging/registry/geolocation.d.ts +37 -0
- package/messaging/registry/geolocation.js +1 -1
- package/messaging/schema/common-action.schema.json +38 -3
- package/messaging/schema/common-event.schema.json +22 -2
- package/messaging/schema/mobile-action.schema.json +104 -3
- package/messaging/schema/mobile-event.schema.json +38 -3
- package/messaging/schema/web-action.schema.json +38 -3
- package/messaging/schema/web-event.schema.json +38 -3
- package/package.json +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import type Color from "@arcgis/core/Color";
|
|
1
2
|
import type Geometry from "@arcgis/core/geometry/Geometry";
|
|
2
3
|
import type Point from "@arcgis/core/geometry/Point";
|
|
4
|
+
import type SimpleLineSymbol from "@arcgis/core/symbols/SimpleLineSymbol.js";
|
|
3
5
|
import type { SpatialReference } from "@vertigis/arcgis-extensions/portal/SpatialReference";
|
|
6
|
+
import type { Color as ColorJson } from "@vertigis/arcgis-extensions/portal/Symbol";
|
|
4
7
|
import type { Command } from "../Command.js";
|
|
5
8
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
6
9
|
import type { TimeSpan } from "../DotNetTypes.js";
|
|
@@ -143,6 +146,34 @@ export interface GnssDeviceConnectionInfo {
|
|
|
143
146
|
*/
|
|
144
147
|
settings: GnssDeviceSettings;
|
|
145
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* Arguments for the geolocation.set-location-symbol command.
|
|
151
|
+
*/
|
|
152
|
+
export interface SetLocationSymbolArgs {
|
|
153
|
+
/**
|
|
154
|
+
* The color to use for the location marker's fill and the accuracy circle's
|
|
155
|
+
* outline.
|
|
156
|
+
*/
|
|
157
|
+
color?: Color | ColorJson | string;
|
|
158
|
+
/**
|
|
159
|
+
* The symbol to use for the outline of the location marker.
|
|
160
|
+
*/
|
|
161
|
+
outline?: SimpleLineSymbol;
|
|
162
|
+
/**
|
|
163
|
+
* The size to use for the location marker.
|
|
164
|
+
*/
|
|
165
|
+
size?: number;
|
|
166
|
+
/**
|
|
167
|
+
* The style to use for the location marker. Valid values are: circle,
|
|
168
|
+
* cross, diamond, square, triangle and X.
|
|
169
|
+
*/
|
|
170
|
+
style?: string;
|
|
171
|
+
/**
|
|
172
|
+
* If true, all other properties will be ignored and the location symbol
|
|
173
|
+
* will be reset to the default symbol.
|
|
174
|
+
*/
|
|
175
|
+
default?: boolean;
|
|
176
|
+
}
|
|
146
177
|
declare enum GnssDeviceType {
|
|
147
178
|
INTEGRATED = "integrated",
|
|
148
179
|
BLUETOOTH = "bluetooth",
|
|
@@ -295,6 +326,12 @@ export declare class GeolocationCommands extends CommandRegistry {
|
|
|
295
326
|
* @mobileOnly
|
|
296
327
|
*/
|
|
297
328
|
get applyDatumTransformation(): Command<CoordinateTransformation | string | number | number[]>;
|
|
329
|
+
/**
|
|
330
|
+
* Modifies the location display symbol.
|
|
331
|
+
*
|
|
332
|
+
* @mobileOnly
|
|
333
|
+
*/
|
|
334
|
+
get setLocationSymbol(): Command<SetLocationSymbolArgs>;
|
|
298
335
|
}
|
|
299
336
|
export declare class GeolocationOperations extends OperationRegistry {
|
|
300
337
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var GeolocateState;var GnssDeviceType;!function(e){e.DISABLED="Disabled",e.ENABLED="Enabled",e.RECENTERING="Recentering",e.RECENTERING_AND_REORIENTING="RecenteringAndReorienting"}(GeolocateState||(GeolocateState={})),function(e){e.INTEGRATED="integrated",e.BLUETOOTH="bluetooth",e.USB="usb",e.EMULATOR="emulator"}(GnssDeviceType||(GnssDeviceType={}));export var FixQuality;!function(e){e.INVALID="Invalid",e.GPS_FIX="GpsFix",e.DGPS_FIX="DgpsFix",e.PPS_FIX="PpsFix",e.RTK="Rtk",e.FLOAT_RTK="FloatRtk",e.ESTIMATED="Estimated",e.MANUAL_INPUT="ManualInput",e.SIMULATION="Simulation"}(FixQuality||(FixQuality={}));export var GpgsaFixMode;!function(e){e.NOT_AVAILABLE="NotAvailable",e.FIX_2D="Fix2D",e.FIX_3D="Fix3D"}(GpgsaFixMode||(GpgsaFixMode={}));export var GnssLockStatus;!function(e){e[e.Good=0]="Good",e[e.UncorrectedPosition=1]="UncorrectedPosition",e[e.EstimatedAccuracy=2]="EstimatedAccuracy",e[e.LostConnection=4]="LostConnection",e[e.NoLocation=16]="NoLocation",e[e.Integrated=32]="Integrated"}(GnssLockStatus||(GnssLockStatus={}));export class GeolocationCommands extends CommandRegistry{get autoRecenter(){return this._messages.command("geolocation.auto-recenter")}get autoRecenterAndReorient(){return this._messages.command("geolocation.auto-recenter-and-reorient")}get displayLocation(){return this._messages.command("geolocation.display-location")}get turnOffGeolocation(){return this._messages.command("geolocation.turn-off-geolocation")}get displayDeviceSettings(){return this._messages.command("geolocation.display-device-settings")}get displayDeviceMetadata(){return this._messages.command("geolocation.display-device-metadata")}get displayDeviceSelection(){return this._messages.command("geolocation.display-device-selection")}get applyDatumTransformation(){return this._messages.command("geolocation.apply-datum-transformation")}}export class GeolocationOperations extends OperationRegistry{get changeSource(){return this._messages.operation("geolocation.change-source")}get getActiveSource(){return this._messages.operation("geolocation.get-active-source")}get getAllSources(){return this._messages.operation("geolocation.get-all-sources")}get getCurrentState(){return this._messages.operation("geolocation.get-current-state")}get getLocationPermissionsEnabled(){return this._messages.operation("geolocation.get-location-permissions-enabled")}get getPosition(){return this._messages.operation("geolocation.get-position")}get getCoordinateTransformations(){return this._messages.operation("geolocation.get-coordinate-transformations")}}export class GeolocationEvents extends EventRegistry{get accuracyChanged(){return this._messages.event("geolocation.accuracy-changed")}get metadataChanged(){return this._messages.event("geolocation.metadata-changed")}get autoRecenterStarted(){return this._messages.event("geolocation.auto-recenter-started")}get autoRecenterAndReorientStarted(){return this._messages.event("geolocation.auto-recenter-and-reorient-started")}get autoRecenterStopped(){return this._messages.event("geolocation.auto-recenter-stopped")}get autoRecenterAndReorientStopped(){return this._messages.event("geolocation.auto-recenter-and-reorient-stopped")}get gnssDeviceDetectionStarted(){return this._messages.event("geolocation.gnss-device-detection-started")}get gnssDeviceDetectionStopped(){return this._messages.event("geolocation.gnss-device-detection-stopped")}get gnssLockStatusChanged(){return this._messages.event("geolocation.gnss-lock-status-changed")}get headingChanged(){return this._messages.event("geolocation.heading-changed")}get positionAcquired(){return this._messages.event("geolocation.position-acquired")}get positionChanged(){return this._messages.event("geolocation.position-changed")}get positionLost(){return this._messages.event("geolocation.position-lost")}get sourceChanged(){return this._messages.event("geolocation.source-changed")}get statusChanged(){return this._messages.event("geolocation.status-changed")}get displayLocationStarted(){return this._messages.event("geolocation.display-location-started")}get displayLocationStopped(){return this._messages.event("geolocation.display-location-stopped")}get transformationChanged(){return this._messages.event("geolocation.gnss-transformation-changed")}get antennaHeightChanged(){return this._messages.event("geolocation.gnss-antenna-height-changed")}get locationDisplayModeChanged(){return this._messages.event("geolocation.display-mode-changed")}}
|
|
1
|
+
import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var GeolocateState;var GnssDeviceType;!function(e){e.DISABLED="Disabled",e.ENABLED="Enabled",e.RECENTERING="Recentering",e.RECENTERING_AND_REORIENTING="RecenteringAndReorienting"}(GeolocateState||(GeolocateState={})),function(e){e.INTEGRATED="integrated",e.BLUETOOTH="bluetooth",e.USB="usb",e.EMULATOR="emulator"}(GnssDeviceType||(GnssDeviceType={}));export var FixQuality;!function(e){e.INVALID="Invalid",e.GPS_FIX="GpsFix",e.DGPS_FIX="DgpsFix",e.PPS_FIX="PpsFix",e.RTK="Rtk",e.FLOAT_RTK="FloatRtk",e.ESTIMATED="Estimated",e.MANUAL_INPUT="ManualInput",e.SIMULATION="Simulation"}(FixQuality||(FixQuality={}));export var GpgsaFixMode;!function(e){e.NOT_AVAILABLE="NotAvailable",e.FIX_2D="Fix2D",e.FIX_3D="Fix3D"}(GpgsaFixMode||(GpgsaFixMode={}));export var GnssLockStatus;!function(e){e[e.Good=0]="Good",e[e.UncorrectedPosition=1]="UncorrectedPosition",e[e.EstimatedAccuracy=2]="EstimatedAccuracy",e[e.LostConnection=4]="LostConnection",e[e.NoLocation=16]="NoLocation",e[e.Integrated=32]="Integrated"}(GnssLockStatus||(GnssLockStatus={}));export class GeolocationCommands extends CommandRegistry{get autoRecenter(){return this._messages.command("geolocation.auto-recenter")}get autoRecenterAndReorient(){return this._messages.command("geolocation.auto-recenter-and-reorient")}get displayLocation(){return this._messages.command("geolocation.display-location")}get turnOffGeolocation(){return this._messages.command("geolocation.turn-off-geolocation")}get displayDeviceSettings(){return this._messages.command("geolocation.display-device-settings")}get displayDeviceMetadata(){return this._messages.command("geolocation.display-device-metadata")}get displayDeviceSelection(){return this._messages.command("geolocation.display-device-selection")}get applyDatumTransformation(){return this._messages.command("geolocation.apply-datum-transformation")}get setLocationSymbol(){return this._messages.command("geolocation.set-location-symbol")}}export class GeolocationOperations extends OperationRegistry{get changeSource(){return this._messages.operation("geolocation.change-source")}get getActiveSource(){return this._messages.operation("geolocation.get-active-source")}get getAllSources(){return this._messages.operation("geolocation.get-all-sources")}get getCurrentState(){return this._messages.operation("geolocation.get-current-state")}get getLocationPermissionsEnabled(){return this._messages.operation("geolocation.get-location-permissions-enabled")}get getPosition(){return this._messages.operation("geolocation.get-position")}get getCoordinateTransformations(){return this._messages.operation("geolocation.get-coordinate-transformations")}}export class GeolocationEvents extends EventRegistry{get accuracyChanged(){return this._messages.event("geolocation.accuracy-changed")}get metadataChanged(){return this._messages.event("geolocation.metadata-changed")}get autoRecenterStarted(){return this._messages.event("geolocation.auto-recenter-started")}get autoRecenterAndReorientStarted(){return this._messages.event("geolocation.auto-recenter-and-reorient-started")}get autoRecenterStopped(){return this._messages.event("geolocation.auto-recenter-stopped")}get autoRecenterAndReorientStopped(){return this._messages.event("geolocation.auto-recenter-and-reorient-stopped")}get gnssDeviceDetectionStarted(){return this._messages.event("geolocation.gnss-device-detection-started")}get gnssDeviceDetectionStopped(){return this._messages.event("geolocation.gnss-device-detection-stopped")}get gnssLockStatusChanged(){return this._messages.event("geolocation.gnss-lock-status-changed")}get headingChanged(){return this._messages.event("geolocation.heading-changed")}get positionAcquired(){return this._messages.event("geolocation.position-acquired")}get positionChanged(){return this._messages.event("geolocation.position-changed")}get positionLost(){return this._messages.event("geolocation.position-lost")}get sourceChanged(){return this._messages.event("geolocation.source-changed")}get statusChanged(){return this._messages.event("geolocation.status-changed")}get displayLocationStarted(){return this._messages.event("geolocation.display-location-started")}get displayLocationStopped(){return this._messages.event("geolocation.display-location-stopped")}get transformationChanged(){return this._messages.event("geolocation.gnss-transformation-changed")}get antennaHeightChanged(){return this._messages.event("geolocation.gnss-antenna-height-changed")}get locationDisplayModeChanged(){return this._messages.event("geolocation.display-mode-changed")}}
|
|
@@ -276,8 +276,12 @@
|
|
|
276
276
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
277
277
|
"type": "string"
|
|
278
278
|
},
|
|
279
|
+
"displayCount": {
|
|
280
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
281
|
+
"type": "number"
|
|
282
|
+
},
|
|
279
283
|
"displayType": {
|
|
280
|
-
"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.",
|
|
284
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
281
285
|
"type": "string"
|
|
282
286
|
},
|
|
283
287
|
"expressionInfo": {
|
|
@@ -298,6 +302,17 @@
|
|
|
298
302
|
},
|
|
299
303
|
"type": "array"
|
|
300
304
|
},
|
|
305
|
+
"orderByFields": {
|
|
306
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
307
|
+
"items": {
|
|
308
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
309
|
+
},
|
|
310
|
+
"type": "array"
|
|
311
|
+
},
|
|
312
|
+
"relationshipId": {
|
|
313
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
314
|
+
"type": "number"
|
|
315
|
+
},
|
|
301
316
|
"text": {
|
|
302
317
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
303
318
|
"type": "string"
|
|
@@ -8979,8 +8994,12 @@
|
|
|
8979
8994
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
8980
8995
|
"type": "string"
|
|
8981
8996
|
},
|
|
8997
|
+
"displayCount": {
|
|
8998
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
8999
|
+
"type": "number"
|
|
9000
|
+
},
|
|
8982
9001
|
"displayType": {
|
|
8983
|
-
"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.",
|
|
9002
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
8984
9003
|
"type": "string"
|
|
8985
9004
|
},
|
|
8986
9005
|
"expressionInfo": {
|
|
@@ -9001,6 +9020,17 @@
|
|
|
9001
9020
|
},
|
|
9002
9021
|
"type": "array"
|
|
9003
9022
|
},
|
|
9023
|
+
"orderByFields": {
|
|
9024
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
9025
|
+
"items": {
|
|
9026
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
9027
|
+
},
|
|
9028
|
+
"type": "array"
|
|
9029
|
+
},
|
|
9030
|
+
"relationshipId": {
|
|
9031
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
9032
|
+
"type": "number"
|
|
9033
|
+
},
|
|
9004
9034
|
"text": {
|
|
9005
9035
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
9006
9036
|
"type": "string"
|
|
@@ -9023,6 +9053,7 @@
|
|
|
9023
9053
|
"expression",
|
|
9024
9054
|
"fields",
|
|
9025
9055
|
"media",
|
|
9056
|
+
"relationship",
|
|
9026
9057
|
"text"
|
|
9027
9058
|
],
|
|
9028
9059
|
"type": "string"
|
|
@@ -10081,7 +10112,7 @@
|
|
|
10081
10112
|
"layerType": {
|
|
10082
10113
|
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
10083
10114
|
"enum": [
|
|
10084
|
-
"
|
|
10115
|
+
"SubtypeGroupLayer"
|
|
10085
10116
|
],
|
|
10086
10117
|
"type": "string"
|
|
10087
10118
|
},
|
|
@@ -11761,6 +11792,10 @@
|
|
|
11761
11792
|
},
|
|
11762
11793
|
"featureInfoFormat": {
|
|
11763
11794
|
"description": "Format of the Feature.",
|
|
11795
|
+
"enum": [
|
|
11796
|
+
"text/html",
|
|
11797
|
+
"text/plain"
|
|
11798
|
+
],
|
|
11764
11799
|
"type": "string"
|
|
11765
11800
|
},
|
|
11766
11801
|
"featureInfoUrl": {
|
|
@@ -5933,8 +5933,12 @@
|
|
|
5933
5933
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
5934
5934
|
"type": "string"
|
|
5935
5935
|
},
|
|
5936
|
+
"displayCount": {
|
|
5937
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
5938
|
+
"type": "number"
|
|
5939
|
+
},
|
|
5936
5940
|
"displayType": {
|
|
5937
|
-
"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.",
|
|
5941
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
5938
5942
|
"type": "string"
|
|
5939
5943
|
},
|
|
5940
5944
|
"expressionInfo": {
|
|
@@ -5955,6 +5959,17 @@
|
|
|
5955
5959
|
},
|
|
5956
5960
|
"type": "array"
|
|
5957
5961
|
},
|
|
5962
|
+
"orderByFields": {
|
|
5963
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
5964
|
+
"items": {
|
|
5965
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
5966
|
+
},
|
|
5967
|
+
"type": "array"
|
|
5968
|
+
},
|
|
5969
|
+
"relationshipId": {
|
|
5970
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
5971
|
+
"type": "number"
|
|
5972
|
+
},
|
|
5958
5973
|
"text": {
|
|
5959
5974
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
5960
5975
|
"type": "string"
|
|
@@ -5977,6 +5992,7 @@
|
|
|
5977
5992
|
"expression",
|
|
5978
5993
|
"fields",
|
|
5979
5994
|
"media",
|
|
5995
|
+
"relationship",
|
|
5980
5996
|
"text"
|
|
5981
5997
|
],
|
|
5982
5998
|
"type": "string"
|
|
@@ -7035,7 +7051,7 @@
|
|
|
7035
7051
|
"layerType": {
|
|
7036
7052
|
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
7037
7053
|
"enum": [
|
|
7038
|
-
"
|
|
7054
|
+
"SubtypeGroupLayer"
|
|
7039
7055
|
],
|
|
7040
7056
|
"type": "string"
|
|
7041
7057
|
},
|
|
@@ -8692,6 +8708,10 @@
|
|
|
8692
8708
|
},
|
|
8693
8709
|
"featureInfoFormat": {
|
|
8694
8710
|
"description": "Format of the Feature.",
|
|
8711
|
+
"enum": [
|
|
8712
|
+
"text/html",
|
|
8713
|
+
"text/plain"
|
|
8714
|
+
],
|
|
8695
8715
|
"type": "string"
|
|
8696
8716
|
},
|
|
8697
8717
|
"featureInfoUrl": {
|
|
@@ -276,8 +276,12 @@
|
|
|
276
276
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
277
277
|
"type": "string"
|
|
278
278
|
},
|
|
279
|
+
"displayCount": {
|
|
280
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
281
|
+
"type": "number"
|
|
282
|
+
},
|
|
279
283
|
"displayType": {
|
|
280
|
-
"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.",
|
|
284
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
281
285
|
"type": "string"
|
|
282
286
|
},
|
|
283
287
|
"expressionInfo": {
|
|
@@ -298,6 +302,17 @@
|
|
|
298
302
|
},
|
|
299
303
|
"type": "array"
|
|
300
304
|
},
|
|
305
|
+
"orderByFields": {
|
|
306
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
307
|
+
"items": {
|
|
308
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
309
|
+
},
|
|
310
|
+
"type": "array"
|
|
311
|
+
},
|
|
312
|
+
"relationshipId": {
|
|
313
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
314
|
+
"type": "number"
|
|
315
|
+
},
|
|
301
316
|
"text": {
|
|
302
317
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
303
318
|
"type": "string"
|
|
@@ -3198,6 +3213,44 @@
|
|
|
3198
3213
|
],
|
|
3199
3214
|
"type": "object"
|
|
3200
3215
|
},
|
|
3216
|
+
"SetLocationSymbolArgs": {
|
|
3217
|
+
"additionalProperties": false,
|
|
3218
|
+
"description": "Arguments for the geolocation.set-location-symbol command.",
|
|
3219
|
+
"properties": {
|
|
3220
|
+
"color": {
|
|
3221
|
+
"anyOf": [
|
|
3222
|
+
{
|
|
3223
|
+
"$ref": "#/definitions/esri.Color"
|
|
3224
|
+
},
|
|
3225
|
+
{
|
|
3226
|
+
"$ref": "#/definitions/esri.rest-api.Symbol.Color",
|
|
3227
|
+
"description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.{@linkhttps://developers.arcgis.com/web-map-specification/objects/color/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/color/}."
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"type": "string"
|
|
3231
|
+
}
|
|
3232
|
+
],
|
|
3233
|
+
"description": "The color to use for the location marker's fill and the accuracy circle's outline."
|
|
3234
|
+
},
|
|
3235
|
+
"default": {
|
|
3236
|
+
"description": "If true, all other properties will be ignored and the location symbol will be reset to the default symbol.",
|
|
3237
|
+
"type": "boolean"
|
|
3238
|
+
},
|
|
3239
|
+
"outline": {
|
|
3240
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol",
|
|
3241
|
+
"description": "The symbol to use for the outline of the location marker."
|
|
3242
|
+
},
|
|
3243
|
+
"size": {
|
|
3244
|
+
"description": "The size to use for the location marker.",
|
|
3245
|
+
"type": "number"
|
|
3246
|
+
},
|
|
3247
|
+
"style": {
|
|
3248
|
+
"description": "The style to use for the location marker. Valid values are: circle, cross, diamond, square, triangle and X.",
|
|
3249
|
+
"type": "string"
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3252
|
+
"type": "object"
|
|
3253
|
+
},
|
|
3201
3254
|
"SetSnappingConfigurationArgs": {
|
|
3202
3255
|
"additionalProperties": false,
|
|
3203
3256
|
"description": "Arguments for the \"sketching.set-snapping-configuration\" command.",
|
|
@@ -10016,8 +10069,12 @@
|
|
|
10016
10069
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
10017
10070
|
"type": "string"
|
|
10018
10071
|
},
|
|
10072
|
+
"displayCount": {
|
|
10073
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
10074
|
+
"type": "number"
|
|
10075
|
+
},
|
|
10019
10076
|
"displayType": {
|
|
10020
|
-
"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.",
|
|
10077
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
10021
10078
|
"type": "string"
|
|
10022
10079
|
},
|
|
10023
10080
|
"expressionInfo": {
|
|
@@ -10038,6 +10095,17 @@
|
|
|
10038
10095
|
},
|
|
10039
10096
|
"type": "array"
|
|
10040
10097
|
},
|
|
10098
|
+
"orderByFields": {
|
|
10099
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
10100
|
+
"items": {
|
|
10101
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
10102
|
+
},
|
|
10103
|
+
"type": "array"
|
|
10104
|
+
},
|
|
10105
|
+
"relationshipId": {
|
|
10106
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
10107
|
+
"type": "number"
|
|
10108
|
+
},
|
|
10041
10109
|
"text": {
|
|
10042
10110
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
10043
10111
|
"type": "string"
|
|
@@ -10060,6 +10128,7 @@
|
|
|
10060
10128
|
"expression",
|
|
10061
10129
|
"fields",
|
|
10062
10130
|
"media",
|
|
10131
|
+
"relationship",
|
|
10063
10132
|
"text"
|
|
10064
10133
|
],
|
|
10065
10134
|
"type": "string"
|
|
@@ -11118,7 +11187,7 @@
|
|
|
11118
11187
|
"layerType": {
|
|
11119
11188
|
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
11120
11189
|
"enum": [
|
|
11121
|
-
"
|
|
11190
|
+
"SubtypeGroupLayer"
|
|
11122
11191
|
],
|
|
11123
11192
|
"type": "string"
|
|
11124
11193
|
},
|
|
@@ -12798,6 +12867,10 @@
|
|
|
12798
12867
|
},
|
|
12799
12868
|
"featureInfoFormat": {
|
|
12800
12869
|
"description": "Format of the Feature.",
|
|
12870
|
+
"enum": [
|
|
12871
|
+
"text/html",
|
|
12872
|
+
"text/plain"
|
|
12873
|
+
],
|
|
12801
12874
|
"type": "string"
|
|
12802
12875
|
},
|
|
12803
12876
|
"featureInfoUrl": {
|
|
@@ -13363,6 +13436,15 @@
|
|
|
13363
13436
|
"geolocation.get-position:output": {
|
|
13364
13437
|
"$ref": "#/definitions/esri.Point"
|
|
13365
13438
|
},
|
|
13439
|
+
"geolocation.set-location-symbol": {
|
|
13440
|
+
"description": "Modifies the location display symbol.",
|
|
13441
|
+
"enum": [
|
|
13442
|
+
"geolocation.set-location-symbol"
|
|
13443
|
+
]
|
|
13444
|
+
},
|
|
13445
|
+
"geolocation.set-location-symbol:input": {
|
|
13446
|
+
"$ref": "#/definitions/SetLocationSymbolArgs"
|
|
13447
|
+
},
|
|
13366
13448
|
"geolocation.turn-off-geolocation": {
|
|
13367
13449
|
"description": "Turns off geolocation.",
|
|
13368
13450
|
"enum": [
|
|
@@ -15436,6 +15518,22 @@
|
|
|
15436
15518
|
],
|
|
15437
15519
|
"type": "object"
|
|
15438
15520
|
},
|
|
15521
|
+
{
|
|
15522
|
+
"additionalProperties": false,
|
|
15523
|
+
"properties": {
|
|
15524
|
+
"arguments": {
|
|
15525
|
+
"$ref": "#/definitions/geolocation.set-location-symbol:input"
|
|
15526
|
+
},
|
|
15527
|
+
"name": {
|
|
15528
|
+
"$ref": "#/definitions/geolocation.set-location-symbol"
|
|
15529
|
+
}
|
|
15530
|
+
},
|
|
15531
|
+
"required": [
|
|
15532
|
+
"name",
|
|
15533
|
+
"arguments"
|
|
15534
|
+
],
|
|
15535
|
+
"type": "object"
|
|
15536
|
+
},
|
|
15439
15537
|
{
|
|
15440
15538
|
"additionalProperties": false,
|
|
15441
15539
|
"properties": {
|
|
@@ -16988,6 +17086,9 @@
|
|
|
16988
17086
|
{
|
|
16989
17087
|
"$ref": "#/definitions/geolocation.get-location-permissions-enabled"
|
|
16990
17088
|
},
|
|
17089
|
+
{
|
|
17090
|
+
"$ref": "#/definitions/geolocation.set-location-symbol"
|
|
17091
|
+
},
|
|
16991
17092
|
{
|
|
16992
17093
|
"$ref": "#/definitions/geolocation.turn-off-geolocation"
|
|
16993
17094
|
},
|
|
@@ -276,8 +276,12 @@
|
|
|
276
276
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
277
277
|
"type": "string"
|
|
278
278
|
},
|
|
279
|
+
"displayCount": {
|
|
280
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
281
|
+
"type": "number"
|
|
282
|
+
},
|
|
279
283
|
"displayType": {
|
|
280
|
-
"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.",
|
|
284
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
281
285
|
"type": "string"
|
|
282
286
|
},
|
|
283
287
|
"expressionInfo": {
|
|
@@ -298,6 +302,17 @@
|
|
|
298
302
|
},
|
|
299
303
|
"type": "array"
|
|
300
304
|
},
|
|
305
|
+
"orderByFields": {
|
|
306
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
307
|
+
"items": {
|
|
308
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
309
|
+
},
|
|
310
|
+
"type": "array"
|
|
311
|
+
},
|
|
312
|
+
"relationshipId": {
|
|
313
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
314
|
+
"type": "number"
|
|
315
|
+
},
|
|
301
316
|
"text": {
|
|
302
317
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
303
318
|
"type": "string"
|
|
@@ -7463,8 +7478,12 @@
|
|
|
7463
7478
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
7464
7479
|
"type": "string"
|
|
7465
7480
|
},
|
|
7481
|
+
"displayCount": {
|
|
7482
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
7483
|
+
"type": "number"
|
|
7484
|
+
},
|
|
7466
7485
|
"displayType": {
|
|
7467
|
-
"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.",
|
|
7486
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
7468
7487
|
"type": "string"
|
|
7469
7488
|
},
|
|
7470
7489
|
"expressionInfo": {
|
|
@@ -7485,6 +7504,17 @@
|
|
|
7485
7504
|
},
|
|
7486
7505
|
"type": "array"
|
|
7487
7506
|
},
|
|
7507
|
+
"orderByFields": {
|
|
7508
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
7509
|
+
"items": {
|
|
7510
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
7511
|
+
},
|
|
7512
|
+
"type": "array"
|
|
7513
|
+
},
|
|
7514
|
+
"relationshipId": {
|
|
7515
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
7516
|
+
"type": "number"
|
|
7517
|
+
},
|
|
7488
7518
|
"text": {
|
|
7489
7519
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
7490
7520
|
"type": "string"
|
|
@@ -7507,6 +7537,7 @@
|
|
|
7507
7537
|
"expression",
|
|
7508
7538
|
"fields",
|
|
7509
7539
|
"media",
|
|
7540
|
+
"relationship",
|
|
7510
7541
|
"text"
|
|
7511
7542
|
],
|
|
7512
7543
|
"type": "string"
|
|
@@ -8565,7 +8596,7 @@
|
|
|
8565
8596
|
"layerType": {
|
|
8566
8597
|
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
8567
8598
|
"enum": [
|
|
8568
|
-
"
|
|
8599
|
+
"SubtypeGroupLayer"
|
|
8569
8600
|
],
|
|
8570
8601
|
"type": "string"
|
|
8571
8602
|
},
|
|
@@ -10222,6 +10253,10 @@
|
|
|
10222
10253
|
},
|
|
10223
10254
|
"featureInfoFormat": {
|
|
10224
10255
|
"description": "Format of the Feature.",
|
|
10256
|
+
"enum": [
|
|
10257
|
+
"text/html",
|
|
10258
|
+
"text/plain"
|
|
10259
|
+
],
|
|
10225
10260
|
"type": "string"
|
|
10226
10261
|
},
|
|
10227
10262
|
"featureInfoUrl": {
|
|
@@ -276,8 +276,12 @@
|
|
|
276
276
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
277
277
|
"type": "string"
|
|
278
278
|
},
|
|
279
|
+
"displayCount": {
|
|
280
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
281
|
+
"type": "number"
|
|
282
|
+
},
|
|
279
283
|
"displayType": {
|
|
280
|
-
"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.",
|
|
284
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
281
285
|
"type": "string"
|
|
282
286
|
},
|
|
283
287
|
"expressionInfo": {
|
|
@@ -298,6 +302,17 @@
|
|
|
298
302
|
},
|
|
299
303
|
"type": "array"
|
|
300
304
|
},
|
|
305
|
+
"orderByFields": {
|
|
306
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
307
|
+
"items": {
|
|
308
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
309
|
+
},
|
|
310
|
+
"type": "array"
|
|
311
|
+
},
|
|
312
|
+
"relationshipId": {
|
|
313
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
314
|
+
"type": "number"
|
|
315
|
+
},
|
|
301
316
|
"text": {
|
|
302
317
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
303
318
|
"type": "string"
|
|
@@ -12651,8 +12666,12 @@
|
|
|
12651
12666
|
"description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
|
|
12652
12667
|
"type": "string"
|
|
12653
12668
|
},
|
|
12669
|
+
"displayCount": {
|
|
12670
|
+
"description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
|
|
12671
|
+
"type": "number"
|
|
12672
|
+
},
|
|
12654
12673
|
"displayType": {
|
|
12655
|
-
"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.",
|
|
12674
|
+
"description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
|
|
12656
12675
|
"type": "string"
|
|
12657
12676
|
},
|
|
12658
12677
|
"expressionInfo": {
|
|
@@ -12673,6 +12692,17 @@
|
|
|
12673
12692
|
},
|
|
12674
12693
|
"type": "array"
|
|
12675
12694
|
},
|
|
12695
|
+
"orderByFields": {
|
|
12696
|
+
"description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
12697
|
+
"items": {
|
|
12698
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.OrderByFields"
|
|
12699
|
+
},
|
|
12700
|
+
"type": "array"
|
|
12701
|
+
},
|
|
12702
|
+
"relationshipId": {
|
|
12703
|
+
"description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
|
|
12704
|
+
"type": "number"
|
|
12705
|
+
},
|
|
12676
12706
|
"text": {
|
|
12677
12707
|
"description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
|
|
12678
12708
|
"type": "string"
|
|
@@ -12695,6 +12725,7 @@
|
|
|
12695
12725
|
"expression",
|
|
12696
12726
|
"fields",
|
|
12697
12727
|
"media",
|
|
12728
|
+
"relationship",
|
|
12698
12729
|
"text"
|
|
12699
12730
|
],
|
|
12700
12731
|
"type": "string"
|
|
@@ -13753,7 +13784,7 @@
|
|
|
13753
13784
|
"layerType": {
|
|
13754
13785
|
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
13755
13786
|
"enum": [
|
|
13756
|
-
"
|
|
13787
|
+
"SubtypeGroupLayer"
|
|
13757
13788
|
],
|
|
13758
13789
|
"type": "string"
|
|
13759
13790
|
},
|
|
@@ -15437,6 +15468,10 @@
|
|
|
15437
15468
|
},
|
|
15438
15469
|
"featureInfoFormat": {
|
|
15439
15470
|
"description": "Format of the Feature.",
|
|
15471
|
+
"enum": [
|
|
15472
|
+
"text/html",
|
|
15473
|
+
"text/plain"
|
|
15474
|
+
],
|
|
15440
15475
|
"type": "string"
|
|
15441
15476
|
},
|
|
15442
15477
|
"featureInfoUrl": {
|