@vertigis/viewer-spec 60.8.0 → 60.9.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/messaging/schema/common-action.schema.json +1923 -164
- package/messaging/schema/common-event.schema.json +2350 -348
- package/messaging/schema/mobile-action.schema.json +2076 -269
- package/messaging/schema/mobile-event.schema.json +2344 -351
- package/messaging/schema/web-action.schema.json +1130 -5
- package/messaging/schema/web-event.schema.json +1386 -9
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -507,6 +507,35 @@
|
|
|
507
507
|
},
|
|
508
508
|
"type": "object"
|
|
509
509
|
},
|
|
510
|
+
"@vertigis.arcgis-extensions.mapping.BasemapExtension.BasemapProperties": {
|
|
511
|
+
"additionalProperties": false,
|
|
512
|
+
"description": "Properties that can be specified for the {@link mapping /BasemapExtension!BasemapExtensionProperties.basemap} property.",
|
|
513
|
+
"properties": {
|
|
514
|
+
"baseMapLayers": {
|
|
515
|
+
"description": "An array of BasemapLayer objects defining the basemaps used in the web map/web scene.",
|
|
516
|
+
"items": {
|
|
517
|
+
"$ref": "#/definitions/BasemapLayerJson"
|
|
518
|
+
},
|
|
519
|
+
"type": "array"
|
|
520
|
+
},
|
|
521
|
+
"elevationLayers": {
|
|
522
|
+
"description": "Deprecated, use ground.layers instead. An array of elevationLayer objects defining the basemaps used in the web scene.",
|
|
523
|
+
"items": {
|
|
524
|
+
"$ref": "#/definitions/ElevationLayerJson"
|
|
525
|
+
},
|
|
526
|
+
"type": "array"
|
|
527
|
+
},
|
|
528
|
+
"id": {
|
|
529
|
+
"description": "An identifier used to refer to the basemap when referencing it elsewhere.\n\nNOTE: Only available in web scenes!",
|
|
530
|
+
"type": "string"
|
|
531
|
+
},
|
|
532
|
+
"title": {
|
|
533
|
+
"description": "String title for the basemap that can be used in a table of contents. If not defined, then it takes the title of the first baseMapLayer in the array.",
|
|
534
|
+
"type": "string"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"type": "object"
|
|
538
|
+
},
|
|
510
539
|
"@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
|
|
511
540
|
"description": "Viewing mode for a map (2D map or 3D scene).",
|
|
512
541
|
"enum": [
|
|
@@ -515,6 +544,52 @@
|
|
|
515
544
|
],
|
|
516
545
|
"type": "string"
|
|
517
546
|
},
|
|
547
|
+
"@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
|
|
548
|
+
"anyOf": [
|
|
549
|
+
{
|
|
550
|
+
"$ref": "#/definitions/esri.PortalItem"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.WebMapJson"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"type": "string"
|
|
566
|
+
}
|
|
567
|
+
],
|
|
568
|
+
"description": "A web map definition or reference."
|
|
569
|
+
},
|
|
570
|
+
"@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
|
|
571
|
+
"anyOf": [
|
|
572
|
+
{
|
|
573
|
+
"$ref": "#/definitions/esri.PortalItem"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"$ref": "#/definitions/esri.rest-api.WebSceneJson.WebSceneJson"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"type": "string"
|
|
589
|
+
}
|
|
590
|
+
],
|
|
591
|
+
"description": "A web scene definition or reference."
|
|
592
|
+
},
|
|
518
593
|
"@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
|
|
519
594
|
"additionalProperties": false,
|
|
520
595
|
"description": "Matches an existing layer.",
|
|
@@ -542,6 +617,31 @@
|
|
|
542
617
|
},
|
|
543
618
|
"type": "object"
|
|
544
619
|
},
|
|
620
|
+
"@vertigis.arcgis-extensions.support.Action.BoundAction": {
|
|
621
|
+
"additionalProperties": false,
|
|
622
|
+
"description": "An action that is bound to arguments.",
|
|
623
|
+
"properties": {
|
|
624
|
+
"arguments": {
|
|
625
|
+
"description": "Arguments for the action. Can either be a primitive value (string, number, boolean), or a plain JSON object containing named arguments."
|
|
626
|
+
},
|
|
627
|
+
"name": {
|
|
628
|
+
"description": "Determines which action to perform. It is up to the calling application how it transforms an action name into actual executable code.",
|
|
629
|
+
"type": "string"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"required": [
|
|
633
|
+
"arguments",
|
|
634
|
+
"name"
|
|
635
|
+
],
|
|
636
|
+
"type": "object"
|
|
637
|
+
},
|
|
638
|
+
"@vertigis.arcgis-extensions.support.Action.CompositeAction": {
|
|
639
|
+
"description": "A composite action that is made up of a sequence of one or more actions. The intent is that the application should execute these in the given order. If any of the actions produces an output, that should be used as the input arguments for all subsequent actions.",
|
|
640
|
+
"items": {
|
|
641
|
+
"$ref": "#/definitions/SimpleAction"
|
|
642
|
+
},
|
|
643
|
+
"type": "array"
|
|
644
|
+
},
|
|
545
645
|
"@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
|
|
546
646
|
"additionalProperties": false,
|
|
547
647
|
"description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
|
|
@@ -679,6 +779,16 @@
|
|
|
679
779
|
"additionalProperties": false,
|
|
680
780
|
"type": "object"
|
|
681
781
|
},
|
|
782
|
+
"ArrayBufferLike": {
|
|
783
|
+
"anyOf": [
|
|
784
|
+
{
|
|
785
|
+
"$ref": "ArrayBuffer"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"$ref": "SharedArrayBuffer"
|
|
789
|
+
}
|
|
790
|
+
]
|
|
791
|
+
},
|
|
682
792
|
"AttributeTable": {
|
|
683
793
|
"additionalProperties": false,
|
|
684
794
|
"description": "Represents the attribute table settings.",
|
|
@@ -1508,6 +1618,17 @@
|
|
|
1508
1618
|
},
|
|
1509
1619
|
"type": "object"
|
|
1510
1620
|
},
|
|
1621
|
+
"LightingJson": {
|
|
1622
|
+
"anyOf": [
|
|
1623
|
+
{
|
|
1624
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunLightingJson"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.VirtualLightingJson"
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
"description": "Settings for defining the lighting of the scene."
|
|
1631
|
+
},
|
|
1511
1632
|
"LocationMarkerEvent": {
|
|
1512
1633
|
"additionalProperties": false,
|
|
1513
1634
|
"description": "Arguments for the various location marker events.",
|
|
@@ -2474,6 +2595,17 @@
|
|
|
2474
2595
|
],
|
|
2475
2596
|
"type": "object"
|
|
2476
2597
|
},
|
|
2598
|
+
"SimpleAction": {
|
|
2599
|
+
"anyOf": [
|
|
2600
|
+
{
|
|
2601
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.support.Action.BoundAction"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"type": "string"
|
|
2605
|
+
}
|
|
2606
|
+
],
|
|
2607
|
+
"description": "Defines a single action to perform."
|
|
2608
|
+
},
|
|
2477
2609
|
"Symbol2DJson": {
|
|
2478
2610
|
"anyOf": [
|
|
2479
2611
|
{
|
|
@@ -2764,6 +2896,26 @@
|
|
|
2764
2896
|
],
|
|
2765
2897
|
"description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/visualVariable/}."
|
|
2766
2898
|
},
|
|
2899
|
+
"WeatherJson": {
|
|
2900
|
+
"anyOf": [
|
|
2901
|
+
{
|
|
2902
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.CloudyWeatherJson"
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.FoggyWeatherJson"
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.RainyWeatherJson"
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunnyWeatherJson"
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.SnowyWeatherJson"
|
|
2915
|
+
}
|
|
2916
|
+
],
|
|
2917
|
+
"description": "Indicates the type of weather visualization in the scene."
|
|
2918
|
+
},
|
|
2767
2919
|
"WorkflowErrorEventArgs": {
|
|
2768
2920
|
"additionalProperties": false,
|
|
2769
2921
|
"description": "Arguments for the \"workflow.workflow-error\" event.",
|
|
@@ -2991,6 +3143,9 @@
|
|
|
2991
3143
|
"esri.PopupTemplate": {
|
|
2992
3144
|
"$ref": "esri/PopupTemplate"
|
|
2993
3145
|
},
|
|
3146
|
+
"esri.PortalItem": {
|
|
3147
|
+
"$ref": "esri/portal/PortalItem"
|
|
3148
|
+
},
|
|
2994
3149
|
"esri.SimpleMarkerSymbol": {
|
|
2995
3150
|
"$ref": "esri/symbols/SimpleMarkerSymbol"
|
|
2996
3151
|
},
|
|
@@ -4216,6 +4371,216 @@
|
|
|
4216
4371
|
],
|
|
4217
4372
|
"type": "object"
|
|
4218
4373
|
},
|
|
4374
|
+
"esri.rest-api.EnvironmentJson.CloudyWeatherJson": {
|
|
4375
|
+
"additionalProperties": false,
|
|
4376
|
+
"description": "Object containing information for changing the weather conditions in the scene to cloudy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/cloudyWeather/}.",
|
|
4377
|
+
"properties": {
|
|
4378
|
+
"cloudCover": {
|
|
4379
|
+
"description": "Specifies the amount of cloud cover in the sky.",
|
|
4380
|
+
"type": "number"
|
|
4381
|
+
},
|
|
4382
|
+
"type": {
|
|
4383
|
+
"const": "cloudy",
|
|
4384
|
+
"description": "The type of weather.",
|
|
4385
|
+
"type": "string"
|
|
4386
|
+
}
|
|
4387
|
+
},
|
|
4388
|
+
"required": [
|
|
4389
|
+
"type"
|
|
4390
|
+
],
|
|
4391
|
+
"type": "object"
|
|
4392
|
+
},
|
|
4393
|
+
"esri.rest-api.EnvironmentJson.ColorBackgroundJson": {
|
|
4394
|
+
"additionalProperties": false,
|
|
4395
|
+
"description": "Specifies a single color to fill the background of the scene with. The scene background is displayed behind any scene objects, stars and atmosphere.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/environment_background_color/}.",
|
|
4396
|
+
"properties": {
|
|
4397
|
+
"color": {
|
|
4398
|
+
"description": "Color is represented as a three or four-element array.",
|
|
4399
|
+
"items": {
|
|
4400
|
+
"type": "number"
|
|
4401
|
+
},
|
|
4402
|
+
"type": "array"
|
|
4403
|
+
},
|
|
4404
|
+
"transparency": {
|
|
4405
|
+
"description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
|
|
4406
|
+
"type": "number"
|
|
4407
|
+
},
|
|
4408
|
+
"type": {
|
|
4409
|
+
"const": "color",
|
|
4410
|
+
"description": "The type of background. Web scenes only.",
|
|
4411
|
+
"type": "string"
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4414
|
+
"required": [
|
|
4415
|
+
"type"
|
|
4416
|
+
],
|
|
4417
|
+
"type": "object"
|
|
4418
|
+
},
|
|
4419
|
+
"esri.rest-api.EnvironmentJson.EnvironmentJson": {
|
|
4420
|
+
"additionalProperties": false,
|
|
4421
|
+
"description": "Represents settings that affect the environment in which the WebScene is displayed (such as lighting). It is part of the initial state of the WebScene as well as slides in the presentation.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/environment/}.",
|
|
4422
|
+
"properties": {
|
|
4423
|
+
"atmosphereEnabled": {
|
|
4424
|
+
"description": "Whether the atmosphere should be visualized. This includes sky and haze effects.",
|
|
4425
|
+
"type": "boolean"
|
|
4426
|
+
},
|
|
4427
|
+
"background": {
|
|
4428
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
|
|
4429
|
+
"description": "Specifies how the background of the scene (which lies behind sky, stars and atmosphere) should be displayed."
|
|
4430
|
+
},
|
|
4431
|
+
"lighting": {
|
|
4432
|
+
"$ref": "#/definitions/LightingJson",
|
|
4433
|
+
"description": "Object containing information on how the scene is lit."
|
|
4434
|
+
},
|
|
4435
|
+
"starsEnabled": {
|
|
4436
|
+
"description": "Whether stars should be displayed in the sky.",
|
|
4437
|
+
"type": "boolean"
|
|
4438
|
+
},
|
|
4439
|
+
"weather": {
|
|
4440
|
+
"$ref": "#/definitions/WeatherJson",
|
|
4441
|
+
"description": "Indicates the type of weather visualization in the scene."
|
|
4442
|
+
}
|
|
4443
|
+
},
|
|
4444
|
+
"type": "object"
|
|
4445
|
+
},
|
|
4446
|
+
"esri.rest-api.EnvironmentJson.FoggyWeatherJson": {
|
|
4447
|
+
"additionalProperties": false,
|
|
4448
|
+
"description": "Object containing information for changing the weather conditions in the scene to foggy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/foggyWeather/}.",
|
|
4449
|
+
"properties": {
|
|
4450
|
+
"fogStrength": {
|
|
4451
|
+
"description": "Specifies the amount of fog used in the scene.",
|
|
4452
|
+
"type": "number"
|
|
4453
|
+
},
|
|
4454
|
+
"type": {
|
|
4455
|
+
"const": "foggy",
|
|
4456
|
+
"description": "The type of weather.",
|
|
4457
|
+
"type": "string"
|
|
4458
|
+
}
|
|
4459
|
+
},
|
|
4460
|
+
"required": [
|
|
4461
|
+
"type"
|
|
4462
|
+
],
|
|
4463
|
+
"type": "object"
|
|
4464
|
+
},
|
|
4465
|
+
"esri.rest-api.EnvironmentJson.RainyWeatherJson": {
|
|
4466
|
+
"additionalProperties": false,
|
|
4467
|
+
"description": "Object containing information for changing the weather conditions in the scene to rainy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rainyWeather/}.",
|
|
4468
|
+
"properties": {
|
|
4469
|
+
"cloudCover": {
|
|
4470
|
+
"description": "Specifies the amount of cloud cover in the sky.",
|
|
4471
|
+
"type": "number"
|
|
4472
|
+
},
|
|
4473
|
+
"precipitation": {
|
|
4474
|
+
"description": "Specifies the amount of snowfall in the scene.",
|
|
4475
|
+
"type": "number"
|
|
4476
|
+
},
|
|
4477
|
+
"type": {
|
|
4478
|
+
"const": "rainy",
|
|
4479
|
+
"description": "The type of weather.",
|
|
4480
|
+
"type": "string"
|
|
4481
|
+
}
|
|
4482
|
+
},
|
|
4483
|
+
"required": [
|
|
4484
|
+
"type"
|
|
4485
|
+
],
|
|
4486
|
+
"type": "object"
|
|
4487
|
+
},
|
|
4488
|
+
"esri.rest-api.EnvironmentJson.SnowyWeatherJson": {
|
|
4489
|
+
"additionalProperties": false,
|
|
4490
|
+
"description": "Object containing information for changing the weather conditions in the scene to snowy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunnyWeather/}.",
|
|
4491
|
+
"properties": {
|
|
4492
|
+
"cloudCover": {
|
|
4493
|
+
"description": "Specifies the amount of cloud cover in the sky.",
|
|
4494
|
+
"type": "number"
|
|
4495
|
+
},
|
|
4496
|
+
"precipitation": {
|
|
4497
|
+
"description": "Specifies the amount of snowfall in the scene.",
|
|
4498
|
+
"type": "number"
|
|
4499
|
+
},
|
|
4500
|
+
"snowCover": {
|
|
4501
|
+
"description": "Display surfaces covered with snow.",
|
|
4502
|
+
"enum": [
|
|
4503
|
+
"disabled",
|
|
4504
|
+
"enabled"
|
|
4505
|
+
],
|
|
4506
|
+
"type": "string"
|
|
4507
|
+
},
|
|
4508
|
+
"type": {
|
|
4509
|
+
"const": "snowy",
|
|
4510
|
+
"description": "The type of weather.",
|
|
4511
|
+
"type": "string"
|
|
4512
|
+
}
|
|
4513
|
+
},
|
|
4514
|
+
"required": [
|
|
4515
|
+
"type"
|
|
4516
|
+
],
|
|
4517
|
+
"type": "object"
|
|
4518
|
+
},
|
|
4519
|
+
"esri.rest-api.EnvironmentJson.SunLightingJson": {
|
|
4520
|
+
"additionalProperties": false,
|
|
4521
|
+
"description": "Object containing information for the sun lighting type. The position of the light is set to the sun's location.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunLighting/}.",
|
|
4522
|
+
"properties": {
|
|
4523
|
+
"datetime": {
|
|
4524
|
+
"description": "The current date and time of the simulated sun. It is a number representing the number of milliseconds since 1 January, 1970 UTC.",
|
|
4525
|
+
"type": "number"
|
|
4526
|
+
},
|
|
4527
|
+
"directShadows": {
|
|
4528
|
+
"description": "Indicates whether to show shadows cast by the sun.",
|
|
4529
|
+
"type": "boolean"
|
|
4530
|
+
},
|
|
4531
|
+
"displayUTCOffset": {
|
|
4532
|
+
"description": "UTC offset in decimal hours. Not to be applied to datetime for sun position, only to adjust display of datetime in UI. If displayUTCOffset is null, offset is calculated for the current location (approximate only).",
|
|
4533
|
+
"type": "number"
|
|
4534
|
+
},
|
|
4535
|
+
"type": {
|
|
4536
|
+
"const": "sun",
|
|
4537
|
+
"description": "The type of lighting.",
|
|
4538
|
+
"type": "string"
|
|
4539
|
+
}
|
|
4540
|
+
},
|
|
4541
|
+
"required": [
|
|
4542
|
+
"type"
|
|
4543
|
+
],
|
|
4544
|
+
"type": "object"
|
|
4545
|
+
},
|
|
4546
|
+
"esri.rest-api.EnvironmentJson.SunnyWeatherJson": {
|
|
4547
|
+
"additionalProperties": false,
|
|
4548
|
+
"description": "Object containing information for changing the weather conditions in the scene to sunny.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunnyWeather/}.",
|
|
4549
|
+
"properties": {
|
|
4550
|
+
"cloudCover": {
|
|
4551
|
+
"description": "Specifies the amount of cloud cover in the sky.",
|
|
4552
|
+
"type": "number"
|
|
4553
|
+
},
|
|
4554
|
+
"type": {
|
|
4555
|
+
"const": "sunny",
|
|
4556
|
+
"description": "The type of weather.",
|
|
4557
|
+
"type": "string"
|
|
4558
|
+
}
|
|
4559
|
+
},
|
|
4560
|
+
"required": [
|
|
4561
|
+
"type"
|
|
4562
|
+
],
|
|
4563
|
+
"type": "object"
|
|
4564
|
+
},
|
|
4565
|
+
"esri.rest-api.EnvironmentJson.VirtualLightingJson": {
|
|
4566
|
+
"additionalProperties": false,
|
|
4567
|
+
"description": "Object containing information for the virtual lighting type. The position of the light follows the camera and is set behind the camera with a small offset to the left side.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunLighting/}.",
|
|
4568
|
+
"properties": {
|
|
4569
|
+
"directShadows": {
|
|
4570
|
+
"description": "Indicates whether to show shadows cast by the main light source.",
|
|
4571
|
+
"type": "boolean"
|
|
4572
|
+
},
|
|
4573
|
+
"type": {
|
|
4574
|
+
"const": "virtual",
|
|
4575
|
+
"description": "The type of lighting.",
|
|
4576
|
+
"type": "string"
|
|
4577
|
+
}
|
|
4578
|
+
},
|
|
4579
|
+
"required": [
|
|
4580
|
+
"type"
|
|
4581
|
+
],
|
|
4582
|
+
"type": "object"
|
|
4583
|
+
},
|
|
4219
4584
|
"esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
|
|
4220
4585
|
"additionalProperties": false,
|
|
4221
4586
|
"description": "Defines a layer of features whose geometry and attributes will be stored directly within the web map.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureCollection/}.",
|
|
@@ -5436,17 +5801,43 @@
|
|
|
5436
5801
|
],
|
|
5437
5802
|
"type": "object"
|
|
5438
5803
|
},
|
|
5439
|
-
"esri.rest-api.
|
|
5804
|
+
"esri.rest-api.GroundJson.GroundJson": {
|
|
5440
5805
|
"additionalProperties": false,
|
|
5441
|
-
"description": "
|
|
5806
|
+
"description": "Ground defines the main surface of the web scene, based on elevation layers..\n\nSee https://developers.arcgis.com/web-scene-specification/objects/ground/.",
|
|
5442
5807
|
"properties": {
|
|
5443
|
-
"
|
|
5444
|
-
"description": "
|
|
5445
|
-
"
|
|
5446
|
-
"
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5808
|
+
"layers": {
|
|
5809
|
+
"description": "An array of elevationLayer objects defining the elevation of the ground in the web scene.",
|
|
5810
|
+
"items": {
|
|
5811
|
+
"$ref": "#/definitions/ElevationLayerJson"
|
|
5812
|
+
},
|
|
5813
|
+
"type": "array"
|
|
5814
|
+
},
|
|
5815
|
+
"navigationConstraint": {
|
|
5816
|
+
"$ref": "__type",
|
|
5817
|
+
"description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
|
|
5818
|
+
},
|
|
5819
|
+
"surfaceColor": {
|
|
5820
|
+
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
5821
|
+
"description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
|
|
5822
|
+
},
|
|
5823
|
+
"transparency": {
|
|
5824
|
+
"description": "The transparency of the ground surface. It is used for seeing through the ground, therefore this property also changes the transparency of the basemap. Draped operational layers are not affected by this property. The value has to lie between 100 (full transparency) and 0 (full opacity).",
|
|
5825
|
+
"type": "number"
|
|
5826
|
+
}
|
|
5827
|
+
},
|
|
5828
|
+
"type": "object"
|
|
5829
|
+
},
|
|
5830
|
+
"esri.rest-api.GroupLayerJson.GroupLayerJson": {
|
|
5831
|
+
"additionalProperties": false,
|
|
5832
|
+
"description": "GroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The GroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/groupLayer/}.",
|
|
5833
|
+
"properties": {
|
|
5834
|
+
"blendMode": {
|
|
5835
|
+
"description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer.",
|
|
5836
|
+
"enum": [
|
|
5837
|
+
"average",
|
|
5838
|
+
"color",
|
|
5839
|
+
"color-burn",
|
|
5840
|
+
"color-dodge",
|
|
5450
5841
|
"darken",
|
|
5451
5842
|
"destination-atop",
|
|
5452
5843
|
"destination-in",
|
|
@@ -6125,6 +6516,235 @@
|
|
|
6125
6516
|
],
|
|
6126
6517
|
"type": "object"
|
|
6127
6518
|
},
|
|
6519
|
+
"esri.rest-api.ItemJson.ItemJson": {
|
|
6520
|
+
"additionalProperties": false,
|
|
6521
|
+
"description": "An item (a unit of content) in the portal. Each item has a unique identifier and a well known URL that is independent of the user owning the item. An item can have associated binary or textual data that's available via the item data resource. For example, an item of type Map Package returns the actual bits corresponding to the map package via the item data resource. The numViews is incremented when an item is opened.\n\nSee {@link http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Item/02r30000007w000000/}.",
|
|
6522
|
+
"properties": {
|
|
6523
|
+
"access": {
|
|
6524
|
+
"description": "Indicates the level of access to this item: private, shared, org, or public.",
|
|
6525
|
+
"type": "string"
|
|
6526
|
+
},
|
|
6527
|
+
"accessInformation": {
|
|
6528
|
+
"description": "Information on the source of the item and its copyright status.",
|
|
6529
|
+
"type": "string"
|
|
6530
|
+
},
|
|
6531
|
+
"advancedSettings": {
|
|
6532
|
+
"description": "<not in spec>."
|
|
6533
|
+
},
|
|
6534
|
+
"appCategories": {
|
|
6535
|
+
"description": "An array that primarily applies to a list of categories that the application item is applicable to.",
|
|
6536
|
+
"items": {
|
|
6537
|
+
"type": "string"
|
|
6538
|
+
},
|
|
6539
|
+
"type": "array"
|
|
6540
|
+
},
|
|
6541
|
+
"avgRating": {
|
|
6542
|
+
"description": "Average rating. Uses a weighted average called \"Bayesian average.\".",
|
|
6543
|
+
"type": "number"
|
|
6544
|
+
},
|
|
6545
|
+
"banner": {
|
|
6546
|
+
"description": "Primarily applies to the banner associated with an application. The URL to the banner used for the application.",
|
|
6547
|
+
"type": "string"
|
|
6548
|
+
},
|
|
6549
|
+
"categories": {
|
|
6550
|
+
"description": "An array of organization categories that are set on the item.",
|
|
6551
|
+
"items": {
|
|
6552
|
+
"type": "string"
|
|
6553
|
+
},
|
|
6554
|
+
"type": "array"
|
|
6555
|
+
},
|
|
6556
|
+
"commentsEnabled": {
|
|
6557
|
+
"description": "Indicates if comments are allowed on the item.",
|
|
6558
|
+
"type": "boolean"
|
|
6559
|
+
},
|
|
6560
|
+
"contentOrigin": {
|
|
6561
|
+
"description": "<not in spec>.",
|
|
6562
|
+
"type": "string"
|
|
6563
|
+
},
|
|
6564
|
+
"created": {
|
|
6565
|
+
"description": "The date the item was created. Shown in UNIX time in milliseconds.",
|
|
6566
|
+
"type": "number"
|
|
6567
|
+
},
|
|
6568
|
+
"culture": {
|
|
6569
|
+
"description": "The item locale information (language and country).",
|
|
6570
|
+
"type": "string"
|
|
6571
|
+
},
|
|
6572
|
+
"description": {
|
|
6573
|
+
"description": "Item description.",
|
|
6574
|
+
"type": "string"
|
|
6575
|
+
},
|
|
6576
|
+
"documentation": {
|
|
6577
|
+
"description": "<not in spec>."
|
|
6578
|
+
},
|
|
6579
|
+
"extent": {
|
|
6580
|
+
"description": "The bounding rectangle of the item. Should always be in WGS84.",
|
|
6581
|
+
"items": {
|
|
6582
|
+
"items": {
|
|
6583
|
+
"type": "number"
|
|
6584
|
+
},
|
|
6585
|
+
"type": "array"
|
|
6586
|
+
},
|
|
6587
|
+
"type": "array"
|
|
6588
|
+
},
|
|
6589
|
+
"groupDesignations": {
|
|
6590
|
+
"description": "<not in spec>."
|
|
6591
|
+
},
|
|
6592
|
+
"guid": {
|
|
6593
|
+
"description": "<not in spec>.",
|
|
6594
|
+
"type": "string"
|
|
6595
|
+
},
|
|
6596
|
+
"id": {
|
|
6597
|
+
"description": "The unique ID for this item.",
|
|
6598
|
+
"type": "string"
|
|
6599
|
+
},
|
|
6600
|
+
"industries": {
|
|
6601
|
+
"description": "Primarily applies to industries associated with the application.",
|
|
6602
|
+
"items": {
|
|
6603
|
+
"type": "string"
|
|
6604
|
+
},
|
|
6605
|
+
"type": "array"
|
|
6606
|
+
},
|
|
6607
|
+
"isOrgItem": {
|
|
6608
|
+
"description": "<not in spec>.",
|
|
6609
|
+
"type": "boolean"
|
|
6610
|
+
},
|
|
6611
|
+
"itemControl": {
|
|
6612
|
+
"description": "Indicates user's control to the item.\n\nValues: admin (for item owner and org admin) | update (for members of groups with item update capability that the item is shared with).",
|
|
6613
|
+
"enum": [
|
|
6614
|
+
"admin",
|
|
6615
|
+
"update"
|
|
6616
|
+
],
|
|
6617
|
+
"type": "string"
|
|
6618
|
+
},
|
|
6619
|
+
"languages": {
|
|
6620
|
+
"description": "Primarily applies to languages associated with the application.",
|
|
6621
|
+
"items": {
|
|
6622
|
+
"type": "string"
|
|
6623
|
+
},
|
|
6624
|
+
"type": "array"
|
|
6625
|
+
},
|
|
6626
|
+
"largeThumbnail": {
|
|
6627
|
+
"description": "Primarily applies to thumbnails associated with an application. The URL to the thumbnail used for the application.",
|
|
6628
|
+
"type": "string"
|
|
6629
|
+
},
|
|
6630
|
+
"lastViewed": {
|
|
6631
|
+
"description": "The date/time the item was last accessed in UNIX format (in milliseconds).",
|
|
6632
|
+
"type": "number"
|
|
6633
|
+
},
|
|
6634
|
+
"licenseInfo": {
|
|
6635
|
+
"description": "Any license information or restrictions.",
|
|
6636
|
+
"type": "string"
|
|
6637
|
+
},
|
|
6638
|
+
"listed": {
|
|
6639
|
+
"description": "Primarily applies to the banner associated with an application. The URL to the banner used for the application.",
|
|
6640
|
+
"type": "boolean"
|
|
6641
|
+
},
|
|
6642
|
+
"modified": {
|
|
6643
|
+
"description": "The date the item was last modified. Shown in UNIX time in milliseconds.",
|
|
6644
|
+
"type": "number"
|
|
6645
|
+
},
|
|
6646
|
+
"name": {
|
|
6647
|
+
"description": "The file name of the item for file types. Read-only.",
|
|
6648
|
+
"type": "string"
|
|
6649
|
+
},
|
|
6650
|
+
"numComments": {
|
|
6651
|
+
"description": "Number of comments on the item.",
|
|
6652
|
+
"type": "number"
|
|
6653
|
+
},
|
|
6654
|
+
"numRatings": {
|
|
6655
|
+
"description": "Number of ratings on the item.",
|
|
6656
|
+
"type": "number"
|
|
6657
|
+
},
|
|
6658
|
+
"numViews": {
|
|
6659
|
+
"description": "Number of views of the item.",
|
|
6660
|
+
"type": "number"
|
|
6661
|
+
},
|
|
6662
|
+
"orgId": {
|
|
6663
|
+
"description": "<not in spec>.",
|
|
6664
|
+
"type": "string"
|
|
6665
|
+
},
|
|
6666
|
+
"owner": {
|
|
6667
|
+
"description": "The username of the user who owns this item.",
|
|
6668
|
+
"type": "string"
|
|
6669
|
+
},
|
|
6670
|
+
"ownerFolder": {
|
|
6671
|
+
"description": "The ID of the folder in which the owner has stored the item. The property is only returned to the item owner or the org admin.",
|
|
6672
|
+
"type": "string"
|
|
6673
|
+
},
|
|
6674
|
+
"properties": {
|
|
6675
|
+
"description": "A JSON object that primarily applies to system requirements, Terms and Conditions, version, supported platforms, YouTube video ID, etc associated with the application.",
|
|
6676
|
+
"type": "string"
|
|
6677
|
+
},
|
|
6678
|
+
"protected": {
|
|
6679
|
+
"description": "Protects the item from deletion. False is the default.",
|
|
6680
|
+
"type": "boolean"
|
|
6681
|
+
},
|
|
6682
|
+
"proxyFilter": {
|
|
6683
|
+
"description": "A JSON object used to restrict service item response results based on specified filter, i.e. limit results returned from a geocode service based on defined filters.See serviceProxyFilter for object details."
|
|
6684
|
+
},
|
|
6685
|
+
"scoreCompleteness": {
|
|
6686
|
+
"description": "Item information completeness score based upon item snippet, thumbnail, description, title, tags etc.",
|
|
6687
|
+
"type": "number"
|
|
6688
|
+
},
|
|
6689
|
+
"screenshots": {
|
|
6690
|
+
"description": "Primarily applies to screenshots associated with an application. The URL to the screenshots used for the application.",
|
|
6691
|
+
"items": {
|
|
6692
|
+
"type": "string"
|
|
6693
|
+
},
|
|
6694
|
+
"type": "array"
|
|
6695
|
+
},
|
|
6696
|
+
"size": {
|
|
6697
|
+
"description": "The size of the item.",
|
|
6698
|
+
"type": "number"
|
|
6699
|
+
},
|
|
6700
|
+
"snippet": {
|
|
6701
|
+
"description": "A short summary description of the item.",
|
|
6702
|
+
"type": "string"
|
|
6703
|
+
},
|
|
6704
|
+
"spatialReference": {
|
|
6705
|
+
"$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
|
|
6706
|
+
"description": "The coordinate system of the item."
|
|
6707
|
+
},
|
|
6708
|
+
"subInfo": {
|
|
6709
|
+
"description": "<not in spec>.",
|
|
6710
|
+
"type": "number"
|
|
6711
|
+
},
|
|
6712
|
+
"tags": {
|
|
6713
|
+
"description": "User defined tags that describe the item.",
|
|
6714
|
+
"items": {
|
|
6715
|
+
"type": "string"
|
|
6716
|
+
},
|
|
6717
|
+
"type": "array"
|
|
6718
|
+
},
|
|
6719
|
+
"thumbnail": {
|
|
6720
|
+
"description": "The URL to the thumbnail used for the item.",
|
|
6721
|
+
"type": "string"
|
|
6722
|
+
},
|
|
6723
|
+
"title": {
|
|
6724
|
+
"description": "The title of the item. This is the name that's displayed to users and by which they refer to the item. Every item must have a title.",
|
|
6725
|
+
"type": "string"
|
|
6726
|
+
},
|
|
6727
|
+
"type": {
|
|
6728
|
+
"description": "The GIS content type of this item. Example types include Web Map, Map Service, Shapefile, and Web Mapping Application. See {@link http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r3000000ms000000}.",
|
|
6729
|
+
"type": "string"
|
|
6730
|
+
},
|
|
6731
|
+
"typeKeywords": {
|
|
6732
|
+
"description": "A set of keywords that further describes the type of this item. Each item is tagged with a set of type keywords that are derived based on its primary type.",
|
|
6733
|
+
"items": {
|
|
6734
|
+
"type": "string"
|
|
6735
|
+
},
|
|
6736
|
+
"type": "array"
|
|
6737
|
+
},
|
|
6738
|
+
"url": {
|
|
6739
|
+
"description": "The URL for the resource represented by the item. Applies only to items that represent web-accessible resources such as map services.",
|
|
6740
|
+
"type": "string"
|
|
6741
|
+
}
|
|
6742
|
+
},
|
|
6743
|
+
"required": [
|
|
6744
|
+
"id"
|
|
6745
|
+
],
|
|
6746
|
+
"type": "object"
|
|
6747
|
+
},
|
|
6128
6748
|
"esri.rest-api.KMLLayerJson.KMLLayerJson": {
|
|
6129
6749
|
"additionalProperties": false,
|
|
6130
6750
|
"description": "Keyhole Markup Language (KML) is an XML-based format for storing geographic data and associated content and is an official Open Geospatial Consortium (OGC) standard. KML is a common format for sharing geographic data with non-GIS users as it can be easily delivered on the Internet.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/kmlLayer/}.",
|
|
@@ -11732,6 +12352,60 @@
|
|
|
11732
12352
|
],
|
|
11733
12353
|
"type": "object"
|
|
11734
12354
|
},
|
|
12355
|
+
"esri.rest-api.TableJson.TableJson": {
|
|
12356
|
+
"additionalProperties": false,
|
|
12357
|
+
"description": "Root element in the web map specifying an array of table objects.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/table/} {@link https://developers.arcgis.com/web-scene-specification/objects/table/}.",
|
|
12358
|
+
"properties": {
|
|
12359
|
+
"capabilities": {
|
|
12360
|
+
"description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: 'Create', 'Delete', 'Query', 'Update', and 'Editing'.",
|
|
12361
|
+
"enum": [
|
|
12362
|
+
"Create",
|
|
12363
|
+
"Delete",
|
|
12364
|
+
"Editing",
|
|
12365
|
+
"Query",
|
|
12366
|
+
"Update"
|
|
12367
|
+
],
|
|
12368
|
+
"type": "string"
|
|
12369
|
+
},
|
|
12370
|
+
"definitionEditor": {
|
|
12371
|
+
"$ref": "#/definitions/esri.rest-api.DefinitionEditorJson.DefinitionEditorJson",
|
|
12372
|
+
"description": "Object indicating the definitionEditor used as a layer's interactive filter."
|
|
12373
|
+
},
|
|
12374
|
+
"formInfo": {
|
|
12375
|
+
"$ref": "#/definitions/esri.rest-api.FormInfoJson.FormInfoJson",
|
|
12376
|
+
"description": "A formInfo object defining the content of the form when you are editing a record."
|
|
12377
|
+
},
|
|
12378
|
+
"id": {
|
|
12379
|
+
"description": "Unique string identifier for the table.",
|
|
12380
|
+
"type": "string"
|
|
12381
|
+
},
|
|
12382
|
+
"itemId": {
|
|
12383
|
+
"description": "Unique string value indicating an item registered in ArcGIS Online or your organization's portal.",
|
|
12384
|
+
"type": "string"
|
|
12385
|
+
},
|
|
12386
|
+
"layerDefinition": {
|
|
12387
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
|
|
12388
|
+
"description": "A layerDefinition object defining the attribute schema and drawing information for the layer. Used with CSV layers."
|
|
12389
|
+
},
|
|
12390
|
+
"popupInfo": {
|
|
12391
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
|
|
12392
|
+
"description": "An object defining the content of popup windows when you query a record and the sort option for child related records."
|
|
12393
|
+
},
|
|
12394
|
+
"refreshInterval": {
|
|
12395
|
+
"description": "Refresh interval of the table in minutes. Non-zero value indicates automatic table refresh at the specified interval. Value of 0 indicates auto refresh is not enabled.",
|
|
12396
|
+
"type": "number"
|
|
12397
|
+
},
|
|
12398
|
+
"title": {
|
|
12399
|
+
"description": "String value for the title of the table.",
|
|
12400
|
+
"type": "string"
|
|
12401
|
+
},
|
|
12402
|
+
"url": {
|
|
12403
|
+
"description": "String value indicating the URL reference of the hosted table.",
|
|
12404
|
+
"type": "string"
|
|
12405
|
+
}
|
|
12406
|
+
},
|
|
12407
|
+
"type": "object"
|
|
12408
|
+
},
|
|
11735
12409
|
"esri.rest-api.TemplateJson.TemplateJson": {
|
|
11736
12410
|
"additionalProperties": false,
|
|
11737
12411
|
"description": "Templates describe features that can be created in a layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/template/} {@link https://developers.arcgis.com/web-scene-specification/objects/template/}.",
|
|
@@ -12385,6 +13059,51 @@
|
|
|
12385
13059
|
],
|
|
12386
13060
|
"type": "object"
|
|
12387
13061
|
},
|
|
13062
|
+
"esri.rest-api.ViewpointJson.CameraJson": {
|
|
13063
|
+
"additionalProperties": false,
|
|
13064
|
+
"description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/camera/}.",
|
|
13065
|
+
"properties": {
|
|
13066
|
+
"heading": {
|
|
13067
|
+
"description": "The heading of the camera in degrees. Heading is zero when north is the top of the screen. It increases as the view rotates clockwise. The angles are always normalized between 0 and 360 degrees.",
|
|
13068
|
+
"type": "number"
|
|
13069
|
+
},
|
|
13070
|
+
"position": {
|
|
13071
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson",
|
|
13072
|
+
"description": "The position of the camera defined by a map point."
|
|
13073
|
+
},
|
|
13074
|
+
"tilt": {
|
|
13075
|
+
"description": "The tilt of the camera in degrees with respect to the surface as projected down from the camera position. Tilt is zero when looking straight down at the surface and 90 degrees when the camera is looking parallel to the surface.",
|
|
13076
|
+
"type": "number"
|
|
13077
|
+
}
|
|
13078
|
+
},
|
|
13079
|
+
"required": [
|
|
13080
|
+
"position"
|
|
13081
|
+
],
|
|
13082
|
+
"type": "object"
|
|
13083
|
+
},
|
|
13084
|
+
"esri.rest-api.ViewpointJson.ViewpointJson": {
|
|
13085
|
+
"additionalProperties": false,
|
|
13086
|
+
"description": "Describes a point of view for a 2D or 3D view. In a 2D view, the viewpoint is determined using a center point and scale value. In a 3D view, it is determined using a camera position. The Viewpoint can be bookmarked for later use, or used for navigation purposes.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/viewpoint/} {@link https://developers.arcgis.com/web-scene-specification/objects/viewpoint/}.",
|
|
13087
|
+
"properties": {
|
|
13088
|
+
"camera": {
|
|
13089
|
+
"$ref": "#/definitions/esri.rest-api.ViewpointJson.CameraJson",
|
|
13090
|
+
"description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed."
|
|
13091
|
+
},
|
|
13092
|
+
"rotation": {
|
|
13093
|
+
"description": "The rotation of due north in relation to the top of the view in degrees.",
|
|
13094
|
+
"type": "number"
|
|
13095
|
+
},
|
|
13096
|
+
"scale": {
|
|
13097
|
+
"description": "The scale of the viewpoint.",
|
|
13098
|
+
"type": "number"
|
|
13099
|
+
},
|
|
13100
|
+
"targetGeometry": {
|
|
13101
|
+
"$ref": "#/definitions/GeometryJson",
|
|
13102
|
+
"description": "The target geometry framed by the viewpoint."
|
|
13103
|
+
}
|
|
13104
|
+
},
|
|
13105
|
+
"type": "object"
|
|
13106
|
+
},
|
|
12388
13107
|
"esri.rest-api.WFSLayerJson.WFSInfoJson": {
|
|
12389
13108
|
"additionalProperties": false,
|
|
12390
13109
|
"description": "Object that defines and provides information about layers in a WFS service.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
|
|
@@ -12828,6 +13547,664 @@
|
|
|
12828
13547
|
},
|
|
12829
13548
|
"type": "object"
|
|
12830
13549
|
},
|
|
13550
|
+
"esri.rest-api.WebMapJson.ApplicationPropertiesJson": {
|
|
13551
|
+
"additionalProperties": false,
|
|
13552
|
+
"description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/applicationProperties/}.",
|
|
13553
|
+
"properties": {
|
|
13554
|
+
"editing": {
|
|
13555
|
+
"$ref": "__type",
|
|
13556
|
+
"description": "If locationTracking is set and enabled, the Collector application will update the feature service at the defined interval with the current location of the user logged into the Collector app. See {@link https://developers.arcgis.com/web-map-specification/objects/editing/}."
|
|
13557
|
+
},
|
|
13558
|
+
"offline": {
|
|
13559
|
+
"$ref": "__type",
|
|
13560
|
+
"description": "Use if working with offline maps. See {@link https://developers.arcgis.com/web-map-specification/objects/offline/}."
|
|
13561
|
+
},
|
|
13562
|
+
"viewing": {
|
|
13563
|
+
"$ref": "__type",
|
|
13564
|
+
"description": "An object containing all the viewing properties of the web map. If this is null or not defined, the client should assume a logical default. See {@link https://developers.arcgis.com/web-map-specification/objects/viewing/}."
|
|
13565
|
+
}
|
|
13566
|
+
},
|
|
13567
|
+
"type": "object"
|
|
13568
|
+
},
|
|
13569
|
+
"esri.rest-api.WebMapJson.BookmarkJson": {
|
|
13570
|
+
"additionalProperties": false,
|
|
13571
|
+
"description": "Predefined bookmarks for use by the application. A bookmark is a saved map extent that allows end users to quickly navigate to a particular area of interest.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/bookmark/}.",
|
|
13572
|
+
"properties": {
|
|
13573
|
+
"extent": {
|
|
13574
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
13575
|
+
},
|
|
13576
|
+
"name": {
|
|
13577
|
+
"description": "A string name for the bookmark.",
|
|
13578
|
+
"type": "string"
|
|
13579
|
+
},
|
|
13580
|
+
"thumbnail": {
|
|
13581
|
+
"$ref": "__type",
|
|
13582
|
+
"description": "Object containing a thumbnail image."
|
|
13583
|
+
},
|
|
13584
|
+
"viewpoint": {
|
|
13585
|
+
"$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
|
|
13586
|
+
"description": "Represents the location displayed on the map. If viewpoint is defined, ignore the extent. If viewpoint is not defined, use the extent property. For backwards compatibility, please save both extent and viewpoint properties."
|
|
13587
|
+
}
|
|
13588
|
+
},
|
|
13589
|
+
"required": [
|
|
13590
|
+
"name"
|
|
13591
|
+
],
|
|
13592
|
+
"type": "object"
|
|
13593
|
+
},
|
|
13594
|
+
"esri.rest-api.WebMapJson.FacilityLayerInfoJson": {
|
|
13595
|
+
"additionalProperties": false,
|
|
13596
|
+
"description": "Defines the layer and field properties for the Facility layer used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/facilityLayerInfo/}.",
|
|
13597
|
+
"properties": {
|
|
13598
|
+
"facilityIdField": {
|
|
13599
|
+
"description": "The name of the attribute field that contains a facility feature's unique identifier.",
|
|
13600
|
+
"type": "string"
|
|
13601
|
+
},
|
|
13602
|
+
"layerId": {
|
|
13603
|
+
"description": "A layer ID that refers to an operational layer in the map. The layer provides access to Facility features to use for floor filtering.",
|
|
13604
|
+
"type": "string"
|
|
13605
|
+
},
|
|
13606
|
+
"nameField": {
|
|
13607
|
+
"description": "The name of the attribute field that contains a facility feature's name.",
|
|
13608
|
+
"type": "string"
|
|
13609
|
+
},
|
|
13610
|
+
"siteIdField": {
|
|
13611
|
+
"description": "The name of the attribute field that contains a facility feature's site identifier (a foreign key to the Site layer).",
|
|
13612
|
+
"type": "string"
|
|
13613
|
+
}
|
|
13614
|
+
},
|
|
13615
|
+
"type": "object"
|
|
13616
|
+
},
|
|
13617
|
+
"esri.rest-api.WebMapJson.FloorFilterJson": {
|
|
13618
|
+
"additionalProperties": false,
|
|
13619
|
+
"description": "Configurable properties used by the floor filter widget. See {@link https://developers.arcgis.com/web-map-specification/objects/floorFilter/}.",
|
|
13620
|
+
"properties": {
|
|
13621
|
+
"enabled": {
|
|
13622
|
+
"description": "Indicates whether the floor filter is actively filtering the displayed content according to the floor filter selection.",
|
|
13623
|
+
"type": "boolean"
|
|
13624
|
+
},
|
|
13625
|
+
"facility": {
|
|
13626
|
+
"description": "Contains a facility identifier for the initially selected facility in the floor filter.",
|
|
13627
|
+
"type": "string"
|
|
13628
|
+
},
|
|
13629
|
+
"level": {
|
|
13630
|
+
"description": "Contains a level identifier for the initially selected floor, which is used when filtering floor-aware layers.",
|
|
13631
|
+
"type": "string"
|
|
13632
|
+
},
|
|
13633
|
+
"longNames": {
|
|
13634
|
+
"description": "Indicates whether the floor filter is showing long names instead of short names for floor levels.",
|
|
13635
|
+
"type": "boolean"
|
|
13636
|
+
},
|
|
13637
|
+
"minimized": {
|
|
13638
|
+
"description": "Indicates whether the floor filter has been minimized to show only the levels list instead of showing the full set of breadcrumbs.",
|
|
13639
|
+
"type": "boolean"
|
|
13640
|
+
},
|
|
13641
|
+
"pinnedLevels": {
|
|
13642
|
+
"description": "Indicates whether the floor filter has been pinned to show the floor levels list, instead of including the levels as a breadcrumb dropdown.",
|
|
13643
|
+
"type": "boolean"
|
|
13644
|
+
},
|
|
13645
|
+
"siteIdentifier": {
|
|
13646
|
+
"description": "Contains a site identifier for the initially selected site in the floor filter.",
|
|
13647
|
+
"type": "string"
|
|
13648
|
+
}
|
|
13649
|
+
},
|
|
13650
|
+
"type": "object"
|
|
13651
|
+
},
|
|
13652
|
+
"esri.rest-api.WebMapJson.InitialStateJson": {
|
|
13653
|
+
"additionalProperties": false,
|
|
13654
|
+
"description": "Defines the initial state when opening web scene.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/initialState/}.",
|
|
13655
|
+
"properties": {
|
|
13656
|
+
"environment": {
|
|
13657
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
|
|
13658
|
+
"description": "The initial environment settings of the WebScene."
|
|
13659
|
+
},
|
|
13660
|
+
"viewpoint": {
|
|
13661
|
+
"$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
|
|
13662
|
+
"description": "Describes a point of view for a 2D or 3D view. In a 3D view, it is determined using a camera position."
|
|
13663
|
+
}
|
|
13664
|
+
},
|
|
13665
|
+
"required": [
|
|
13666
|
+
"viewpoint"
|
|
13667
|
+
],
|
|
13668
|
+
"type": "object"
|
|
13669
|
+
},
|
|
13670
|
+
"esri.rest-api.WebMapJson.LevelLayerInfoJson": {
|
|
13671
|
+
"additionalProperties": false,
|
|
13672
|
+
"description": "Defines the layer and field properties for the Level layer used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/levelLayerInfo/}.",
|
|
13673
|
+
"properties": {
|
|
13674
|
+
"facilityIdField": {
|
|
13675
|
+
"description": "The name of the attribute field that contains a level feature's facility identifier (a foreign key to the Facility layer).",
|
|
13676
|
+
"type": "string"
|
|
13677
|
+
},
|
|
13678
|
+
"layerId": {
|
|
13679
|
+
"description": "A layer ID that refers to an operational layer in the map. The layer provides access to Level features to use for floor filtering.",
|
|
13680
|
+
"type": "string"
|
|
13681
|
+
},
|
|
13682
|
+
"levelIdField": {
|
|
13683
|
+
"description": "The name of the attribute field that contains a level feature's unique identifier.",
|
|
13684
|
+
"type": "string"
|
|
13685
|
+
},
|
|
13686
|
+
"levelNumberField": {
|
|
13687
|
+
"description": "The name of the attribute field that contains a level feature's level number specific to its facility.",
|
|
13688
|
+
"type": "string"
|
|
13689
|
+
},
|
|
13690
|
+
"longNameField": {
|
|
13691
|
+
"description": "The name of the attribute field that contains a level feature's long name.",
|
|
13692
|
+
"type": "string"
|
|
13693
|
+
},
|
|
13694
|
+
"shortNameField": {
|
|
13695
|
+
"description": "The name of the attribute field that contains a level feature's short name.",
|
|
13696
|
+
"type": "string"
|
|
13697
|
+
},
|
|
13698
|
+
"verticalOrderField": {
|
|
13699
|
+
"description": "The name of the attribute field that contains a level feature's vertical order. The vertical order defines the order of display in the floor filter widget, and it also references the floor levels of an Indoor Positioning System.",
|
|
13700
|
+
"type": "string"
|
|
13701
|
+
}
|
|
13702
|
+
},
|
|
13703
|
+
"type": "object"
|
|
13704
|
+
},
|
|
13705
|
+
"esri.rest-api.WebMapJson.MapFloorInfoJson": {
|
|
13706
|
+
"additionalProperties": false,
|
|
13707
|
+
"description": "Contains floor-awareness information for the map. Defines the layers and required fields for each layer that are used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/mapFloorInfo/}.",
|
|
13708
|
+
"properties": {
|
|
13709
|
+
"facilityLayer": {
|
|
13710
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.FacilityLayerInfoJson",
|
|
13711
|
+
"description": "Defines the layer and field properties for the Facility layer used for floor filtering."
|
|
13712
|
+
},
|
|
13713
|
+
"levelLayer": {
|
|
13714
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.LevelLayerInfoJson",
|
|
13715
|
+
"description": "Defines the layer and field properties for the Level layer used for floor filtering."
|
|
13716
|
+
},
|
|
13717
|
+
"siteLayer": {
|
|
13718
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.SiteLayerInfoJson",
|
|
13719
|
+
"description": "Defines the layer and field properties for the Site layer used for floor filtering. This property is optional."
|
|
13720
|
+
}
|
|
13721
|
+
},
|
|
13722
|
+
"type": "object"
|
|
13723
|
+
},
|
|
13724
|
+
"esri.rest-api.WebMapJson.MapRangeInfoJson": {
|
|
13725
|
+
"additionalProperties": false,
|
|
13726
|
+
"description": "Map Range Information.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/mapRangeInfo/}.",
|
|
13727
|
+
"properties": {
|
|
13728
|
+
"activeRangeName": {
|
|
13729
|
+
"description": "Active range ID that slider/picker acts upon.",
|
|
13730
|
+
"type": "string"
|
|
13731
|
+
},
|
|
13732
|
+
"currentRangeExtent": {
|
|
13733
|
+
"description": "Current range for the active range.",
|
|
13734
|
+
"items": [
|
|
13735
|
+
{
|
|
13736
|
+
"type": "number"
|
|
13737
|
+
},
|
|
13738
|
+
{
|
|
13739
|
+
"type": "number"
|
|
13740
|
+
}
|
|
13741
|
+
],
|
|
13742
|
+
"maxItems": 2,
|
|
13743
|
+
"minItems": 2,
|
|
13744
|
+
"type": "array"
|
|
13745
|
+
},
|
|
13746
|
+
"fullRangeExtent": {
|
|
13747
|
+
"description": "Full range extent for the active range to be presented in the UI.",
|
|
13748
|
+
"items": [
|
|
13749
|
+
{
|
|
13750
|
+
"type": "number"
|
|
13751
|
+
},
|
|
13752
|
+
{
|
|
13753
|
+
"type": "number"
|
|
13754
|
+
}
|
|
13755
|
+
],
|
|
13756
|
+
"maxItems": 2,
|
|
13757
|
+
"minItems": 2,
|
|
13758
|
+
"type": "array"
|
|
13759
|
+
}
|
|
13760
|
+
},
|
|
13761
|
+
"type": "object"
|
|
13762
|
+
},
|
|
13763
|
+
"esri.rest-api.WebMapJson.PresentationJson": {
|
|
13764
|
+
"additionalProperties": false,
|
|
13765
|
+
"description": "A presentation consists of multiple slides, where each slide is a specific view into the web scene.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/presentation/} {@link https://developers.arcgis.com/web-scene-specification/objects/presentation/}.",
|
|
13766
|
+
"properties": {
|
|
13767
|
+
"displayTimeSlider": {
|
|
13768
|
+
"description": "Indicates whether to display the time slider (if accessible). [WebMap only].",
|
|
13769
|
+
"type": "boolean"
|
|
13770
|
+
},
|
|
13771
|
+
"showLegend": {
|
|
13772
|
+
"description": "Indicates whether to display a legend on all slides. [WebMap only].",
|
|
13773
|
+
"type": "boolean"
|
|
13774
|
+
},
|
|
13775
|
+
"slideAdvancementInterval": {
|
|
13776
|
+
"description": "Number of seconds to show slide before proceeding to the next slide. [WebMap only].",
|
|
13777
|
+
"type": "number"
|
|
13778
|
+
},
|
|
13779
|
+
"slides": {
|
|
13780
|
+
"description": "An array of slides that bookmark viewpoints, visible layers, and other settings previously defined in a WebScene.",
|
|
13781
|
+
"items": {
|
|
13782
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.SlideJson"
|
|
13783
|
+
},
|
|
13784
|
+
"type": "array"
|
|
13785
|
+
},
|
|
13786
|
+
"useTimeExtentOfSlide": {
|
|
13787
|
+
"description": "Indicates whether to use the time extent (if applicable) of a slide. [WebMap only].",
|
|
13788
|
+
"type": "boolean"
|
|
13789
|
+
}
|
|
13790
|
+
},
|
|
13791
|
+
"type": "object"
|
|
13792
|
+
},
|
|
13793
|
+
"esri.rest-api.WebMapJson.RangeJson": {
|
|
13794
|
+
"additionalProperties": false,
|
|
13795
|
+
"description": "Range object.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/range/} {@link https://developers.arcgis.com/web-scene-specification/objects/range/}.",
|
|
13796
|
+
"properties": {
|
|
13797
|
+
"interactionMode": {
|
|
13798
|
+
"description": "Indicates the mode in which the active range should be presented to the user. Must be one of the following values: slider, picker.",
|
|
13799
|
+
"type": "string"
|
|
13800
|
+
},
|
|
13801
|
+
"numberOfStops": {
|
|
13802
|
+
"description": "This is used to generate the activeRangeValues if activeRangeValues are not specified.",
|
|
13803
|
+
"type": "number"
|
|
13804
|
+
},
|
|
13805
|
+
"stopInterval": {
|
|
13806
|
+
"description": "Interval in which stops should be generated.",
|
|
13807
|
+
"type": "number"
|
|
13808
|
+
}
|
|
13809
|
+
},
|
|
13810
|
+
"type": "object"
|
|
13811
|
+
},
|
|
13812
|
+
"esri.rest-api.WebMapJson.SiteLayerInfoJson": {
|
|
13813
|
+
"additionalProperties": false,
|
|
13814
|
+
"description": "Defines the layer and field properties for the Site layer used for floor filtering. This property is optional. See {@link https://developers.arcgis.com/web-map-specification/objects/siteLayerInfo/}.",
|
|
13815
|
+
"properties": {
|
|
13816
|
+
"layerId": {
|
|
13817
|
+
"description": "A layer ID that refers to an operational layer in the map. The layer provides access to Site features to use for floor filtering.",
|
|
13818
|
+
"type": "string"
|
|
13819
|
+
},
|
|
13820
|
+
"nameField": {
|
|
13821
|
+
"description": "The name of the attribute field that contains a site feature's name.",
|
|
13822
|
+
"type": "string"
|
|
13823
|
+
},
|
|
13824
|
+
"siteIdField": {
|
|
13825
|
+
"description": "The name of the attribute field that contains a site feature's unique identifier.",
|
|
13826
|
+
"type": "string"
|
|
13827
|
+
}
|
|
13828
|
+
},
|
|
13829
|
+
"type": "object"
|
|
13830
|
+
},
|
|
13831
|
+
"esri.rest-api.WebMapJson.SlideJson": {
|
|
13832
|
+
"additionalProperties": false,
|
|
13833
|
+
"description": "A slide stores a snapshot of several pre-set properties of the WebScene, such as the basemap, viewpoint and visible layers.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/slide/} {@link https://developers.arcgis.com/web-scene-specification/objects/slide/}.",
|
|
13834
|
+
"properties": {
|
|
13835
|
+
"baseMap": {
|
|
13836
|
+
"anyOf": [
|
|
13837
|
+
{
|
|
13838
|
+
"$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson"
|
|
13839
|
+
},
|
|
13840
|
+
{
|
|
13841
|
+
"type": "string"
|
|
13842
|
+
}
|
|
13843
|
+
],
|
|
13844
|
+
"description": "The basemap of the scene. Only the base and reference layers of the basemap are stored in a slide. This value can be an instance of Basemap or one of the strings listed in the table below. Same as baseMap, but with no elevationLayers property."
|
|
13845
|
+
},
|
|
13846
|
+
"description": {
|
|
13847
|
+
"$ref": "__type",
|
|
13848
|
+
"description": "Text description of the individual presentation slide."
|
|
13849
|
+
},
|
|
13850
|
+
"environment": {
|
|
13851
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
|
|
13852
|
+
"description": "Represents settings that affect the environment in which the WebScene is displayed (such as lighting)."
|
|
13853
|
+
},
|
|
13854
|
+
"extent": {
|
|
13855
|
+
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson",
|
|
13856
|
+
"description": "The standard Esri extent object with spatialReference, xmax, xmin, ymax and ymin. [WebMap Only]."
|
|
13857
|
+
},
|
|
13858
|
+
"hidden": {
|
|
13859
|
+
"description": "Indicates whether the slide should be hidden within the presentation. [WebMap Only].",
|
|
13860
|
+
"type": "boolean"
|
|
13861
|
+
},
|
|
13862
|
+
"id": {
|
|
13863
|
+
"description": "The unique id of a slide within the slides property of a Presentation.",
|
|
13864
|
+
"type": "string"
|
|
13865
|
+
},
|
|
13866
|
+
"mapLocation": {
|
|
13867
|
+
"$ref": "__type",
|
|
13868
|
+
"description": "An object with a centerPoint object and sometimes a resolution. [WebMap Only] {@link https://developers.arcgis.com/web-map-specification/objects/mapLocation/}."
|
|
13869
|
+
},
|
|
13870
|
+
"thumbnail": {
|
|
13871
|
+
"$ref": "__type",
|
|
13872
|
+
"description": "A data URI encoded thumbnail. See {@link https://developers.arcgis.com/web-scene-specification/objects/thumbnail/}."
|
|
13873
|
+
},
|
|
13874
|
+
"timeExtent": {
|
|
13875
|
+
"description": "An array of two numbers. The first one indicates start time and the second one indicates end time. [WebMap Only].",
|
|
13876
|
+
"items": {
|
|
13877
|
+
"type": "number"
|
|
13878
|
+
},
|
|
13879
|
+
"type": "array"
|
|
13880
|
+
},
|
|
13881
|
+
"title": {
|
|
13882
|
+
"$ref": "__type",
|
|
13883
|
+
"description": "Text and formatting for the title of the individual presentation slide https://developers.arcgis.com/web-map-specification/objects/title/ {@link https://developers.arcgis.com/web-scene-specification/objects/title/}."
|
|
13884
|
+
},
|
|
13885
|
+
"viewpoint": {
|
|
13886
|
+
"$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
|
|
13887
|
+
"description": "The viewpoint of the slide. This acts like a bookmark, saving a predefined location or point of view from which to view the scene."
|
|
13888
|
+
},
|
|
13889
|
+
"visibleLayers": {
|
|
13890
|
+
"description": "An array of numbers indicating layer visibility. Stores references (by ID) to the layers that are set as visible when a slide is applied to a MapView or SceneView. See {@link https://developers.arcgis.com/web-map-specification/objects/visibleLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/visibleLayer/}.",
|
|
13891
|
+
"items": {
|
|
13892
|
+
"$ref": "__type"
|
|
13893
|
+
},
|
|
13894
|
+
"type": "array"
|
|
13895
|
+
},
|
|
13896
|
+
"visiblePopup": {
|
|
13897
|
+
"$ref": "__type",
|
|
13898
|
+
"description": "A presentation slide's visiblePopup which contains anchorPoint, featureId, layerId, and subLayerId. See {@link https://developers.arcgis.com/web-map-specification/objects/visiblePopup/}."
|
|
13899
|
+
}
|
|
13900
|
+
},
|
|
13901
|
+
"type": "object"
|
|
13902
|
+
},
|
|
13903
|
+
"esri.rest-api.WebMapJson.TimeSliderJson": {
|
|
13904
|
+
"additionalProperties": false,
|
|
13905
|
+
"description": "Time animation is controlled by a configurable time slider. Those configurations are saved to the web map as a timeSlider widget.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/timeSlider/}.",
|
|
13906
|
+
"properties": {
|
|
13907
|
+
"properties": {
|
|
13908
|
+
"$ref": "__type",
|
|
13909
|
+
"description": "Properties for the time slider."
|
|
13910
|
+
}
|
|
13911
|
+
},
|
|
13912
|
+
"required": [
|
|
13913
|
+
"properties"
|
|
13914
|
+
],
|
|
13915
|
+
"type": "object"
|
|
13916
|
+
},
|
|
13917
|
+
"esri.rest-api.WebMapJson.TraceConfigurationJson": {
|
|
13918
|
+
"additionalProperties": false,
|
|
13919
|
+
"description": "An array of pre-configured trace configurations for quickly running common traces. See {@link https://developers.arcgis.com/web-map-specification/objects/traceConfiguration/}.",
|
|
13920
|
+
"properties": {
|
|
13921
|
+
"id": {
|
|
13922
|
+
"description": "A unique identifying string for the trace configuration.",
|
|
13923
|
+
"type": "string"
|
|
13924
|
+
},
|
|
13925
|
+
"title": {
|
|
13926
|
+
"description": "A user-friendly string title for the trace configuration that can be used in a table of contents.",
|
|
13927
|
+
"type": "string"
|
|
13928
|
+
}
|
|
13929
|
+
},
|
|
13930
|
+
"type": "object"
|
|
13931
|
+
},
|
|
13932
|
+
"esri.rest-api.WebMapJson.UtilityNetworkJson": {
|
|
13933
|
+
"additionalProperties": false,
|
|
13934
|
+
"description": "Identifies the central object for utility network schema information to access utility-related functionality, such as tracing and querying associations. See {@link https://developers.arcgis.com/web-map-specification/objects/utilityNetwork/}.",
|
|
13935
|
+
"properties": {
|
|
13936
|
+
"id": {
|
|
13937
|
+
"description": "A unique identifying string for the utility network.",
|
|
13938
|
+
"type": "string"
|
|
13939
|
+
},
|
|
13940
|
+
"title": {
|
|
13941
|
+
"description": "A user-friendly string title for the utility network that can be used in a table of contents.",
|
|
13942
|
+
"type": "string"
|
|
13943
|
+
},
|
|
13944
|
+
"traceConfigurations": {
|
|
13945
|
+
"description": "An array of pre-configured trace configurations for quickly running common traces.",
|
|
13946
|
+
"items": {
|
|
13947
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.TraceConfigurationJson"
|
|
13948
|
+
},
|
|
13949
|
+
"type": "array"
|
|
13950
|
+
},
|
|
13951
|
+
"url": {
|
|
13952
|
+
"description": "A string value indicating the URL to the utility network layer.",
|
|
13953
|
+
"type": "string"
|
|
13954
|
+
}
|
|
13955
|
+
},
|
|
13956
|
+
"type": "object"
|
|
13957
|
+
},
|
|
13958
|
+
"esri.rest-api.WebMapJson.WebMapJson": {
|
|
13959
|
+
"additionalProperties": false,
|
|
13960
|
+
"description": "The web map data lists the basemap, operational layers, and bookmarks to be used in the web map. It also contains information about popup windows and layer styling overrides to be used in the web map. A version property allows you to supply the version of the web map JSON format being used.\n\nPart of the Esri web map specification. See {@link http://resources.arcgis.com/en/help/arcgis-web-map-json/}. See {@link https://developers.arcgis.com/web-map-specification/objects/webmap/}.",
|
|
13961
|
+
"properties": {
|
|
13962
|
+
"applicationProperties": {
|
|
13963
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
|
|
13964
|
+
"description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions."
|
|
13965
|
+
},
|
|
13966
|
+
"authoringApp": {
|
|
13967
|
+
"description": "String value indicating the application which authored the webmap.",
|
|
13968
|
+
"type": "string"
|
|
13969
|
+
},
|
|
13970
|
+
"authoringAppVersion": {
|
|
13971
|
+
"description": "String value indicating the authoring App's version number.",
|
|
13972
|
+
"type": "string"
|
|
13973
|
+
},
|
|
13974
|
+
"background": {
|
|
13975
|
+
"$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
|
|
13976
|
+
"description": "The background."
|
|
13977
|
+
},
|
|
13978
|
+
"baseMap": {
|
|
13979
|
+
"$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
|
|
13980
|
+
"description": "The map's basemap layer(s). Layers are drawn based on the index position in the array; The first layer in the array is the first layer drawn, the next layer in the array is drawn on top of it, and so on."
|
|
13981
|
+
},
|
|
13982
|
+
"bookmarks": {
|
|
13983
|
+
"description": "Bookmarks that are saved with the map.",
|
|
13984
|
+
"items": {
|
|
13985
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.BookmarkJson"
|
|
13986
|
+
},
|
|
13987
|
+
"type": "array"
|
|
13988
|
+
},
|
|
13989
|
+
"initialState": {
|
|
13990
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
|
|
13991
|
+
"description": "The initial state at which to open the map."
|
|
13992
|
+
},
|
|
13993
|
+
"mapFloorInfo": {
|
|
13994
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
|
|
13995
|
+
"description": "Contains floor-awareness information for the map."
|
|
13996
|
+
},
|
|
13997
|
+
"mapRangeInfo": {
|
|
13998
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
|
|
13999
|
+
"description": "Map range information."
|
|
14000
|
+
},
|
|
14001
|
+
"operationalLayers": {
|
|
14002
|
+
"description": "Operational layers contain your business data. They are used to make thematic maps. Usually, a basemap sits beneath your operational layers to give them geographic context. See {@link https://developers.arcgis.com/web-map-specification/objects/operationalLayers/}.",
|
|
14003
|
+
"items": {
|
|
14004
|
+
"$ref": "#/definitions/OperationalLayerJson"
|
|
14005
|
+
},
|
|
14006
|
+
"type": "array"
|
|
14007
|
+
},
|
|
14008
|
+
"presentation": {
|
|
14009
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
|
|
14010
|
+
"description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
|
|
14011
|
+
},
|
|
14012
|
+
"spatialReference": {
|
|
14013
|
+
"$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
|
|
14014
|
+
"description": "An object used to specify the spatial reference of the given geometry."
|
|
14015
|
+
},
|
|
14016
|
+
"tables": {
|
|
14017
|
+
"description": "Specify an array of table objects.",
|
|
14018
|
+
"items": {
|
|
14019
|
+
"$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
|
|
14020
|
+
},
|
|
14021
|
+
"type": "array"
|
|
14022
|
+
},
|
|
14023
|
+
"timeZone": {
|
|
14024
|
+
"description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
|
|
14025
|
+
"type": "string"
|
|
14026
|
+
},
|
|
14027
|
+
"utilityNetworks": {
|
|
14028
|
+
"description": "An array of utility network objects the map can use to access utility-related functionality, such as tracing and querying associations.",
|
|
14029
|
+
"items": {
|
|
14030
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.UtilityNetworkJson"
|
|
14031
|
+
},
|
|
14032
|
+
"type": "array"
|
|
14033
|
+
},
|
|
14034
|
+
"version": {
|
|
14035
|
+
"description": "Root element in the web map specifying a string value indicating the web map version. See {@link https://developers.arcgis.com/web-map-specification/objects/version/}.",
|
|
14036
|
+
"type": "string"
|
|
14037
|
+
},
|
|
14038
|
+
"widgets": {
|
|
14039
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
|
|
14040
|
+
"description": "The widgets object contains widgets that should be exposed to the user."
|
|
14041
|
+
}
|
|
14042
|
+
},
|
|
14043
|
+
"required": [
|
|
14044
|
+
"baseMap",
|
|
14045
|
+
"spatialReference",
|
|
14046
|
+
"version"
|
|
14047
|
+
],
|
|
14048
|
+
"type": "object"
|
|
14049
|
+
},
|
|
14050
|
+
"esri.rest-api.WebMapJson.WidgetsJson": {
|
|
14051
|
+
"additionalProperties": false,
|
|
14052
|
+
"description": "The widgets object contains widgets that should be exposed to the user.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/widgets/} {@link https://developers.arcgis.com/web-scene-specification/objects/widgets/}.",
|
|
14053
|
+
"properties": {
|
|
14054
|
+
"floorFilter": {
|
|
14055
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.FloorFilterJson",
|
|
14056
|
+
"description": "Configurable properties used by the floor filter widget."
|
|
14057
|
+
},
|
|
14058
|
+
"range": {
|
|
14059
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.RangeJson",
|
|
14060
|
+
"description": "Active range."
|
|
14061
|
+
},
|
|
14062
|
+
"timeSlider": {
|
|
14063
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.TimeSliderJson",
|
|
14064
|
+
"description": "Time animation is controlled by a configurable time slider. The time slider widget will act upon all the time aware layers in the map."
|
|
14065
|
+
}
|
|
14066
|
+
},
|
|
14067
|
+
"type": "object"
|
|
14068
|
+
},
|
|
14069
|
+
"esri.rest-api.WebSceneJson.HeightModelInfoJson": {
|
|
14070
|
+
"additionalProperties": false,
|
|
14071
|
+
"description": "An object that defines the characteristics of the vertical coordinate system used by the web scene.",
|
|
14072
|
+
"properties": {
|
|
14073
|
+
"heightModel": {
|
|
14074
|
+
"description": "The surface type or height model of the vertical coordinate system.",
|
|
14075
|
+
"enum": [
|
|
14076
|
+
"ellipsoidal",
|
|
14077
|
+
"gravity_related_height"
|
|
14078
|
+
],
|
|
14079
|
+
"type": "string"
|
|
14080
|
+
},
|
|
14081
|
+
"heightUnit": {
|
|
14082
|
+
"description": "The unit of the vertical coordinate system.",
|
|
14083
|
+
"enum": [
|
|
14084
|
+
"150-kilometers",
|
|
14085
|
+
"50-kilometers",
|
|
14086
|
+
"benoit-1895-b-chain",
|
|
14087
|
+
"clarke-foot",
|
|
14088
|
+
"clarke-link",
|
|
14089
|
+
"clarke-yard",
|
|
14090
|
+
"foot",
|
|
14091
|
+
"gold-coast-foot",
|
|
14092
|
+
"indian-1937-yard",
|
|
14093
|
+
"indian-yard",
|
|
14094
|
+
"meter",
|
|
14095
|
+
"sears-1922-truncated-chain",
|
|
14096
|
+
"sears-chain",
|
|
14097
|
+
"sears-foot",
|
|
14098
|
+
"sears-yard",
|
|
14099
|
+
"us-foot"
|
|
14100
|
+
],
|
|
14101
|
+
"type": "string"
|
|
14102
|
+
},
|
|
14103
|
+
"vertCRS": {
|
|
14104
|
+
"description": "The datum realization of the vertical coordinate system.",
|
|
14105
|
+
"type": "string"
|
|
14106
|
+
}
|
|
14107
|
+
},
|
|
14108
|
+
"required": [
|
|
14109
|
+
"heightModel",
|
|
14110
|
+
"heightUnit"
|
|
14111
|
+
],
|
|
14112
|
+
"type": "object"
|
|
14113
|
+
},
|
|
14114
|
+
"esri.rest-api.WebSceneJson.WebSceneJson": {
|
|
14115
|
+
"additionalProperties": false,
|
|
14116
|
+
"description": "An Esri web scene.\n\nThe web scene is the core element of 3D mapping across the ArcGIS platform. It defines the content, style, environment, and slides of your scene and it can be shared across multiple ArcGIS web and desktop applications. Web scenes can be created, published, and consumed in ArcGIS Pro and ArcGIS Online with the Scene Viewer. The web scene is saved as a JSON document that can be consumed by the ArcGIS API for JavaScript via the WebScene class to easily create compelling 3D applications.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/webscene/}.",
|
|
14117
|
+
"properties": {
|
|
14118
|
+
"applicationProperties": {
|
|
14119
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
|
|
14120
|
+
"description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions."
|
|
14121
|
+
},
|
|
14122
|
+
"authoringApp": {
|
|
14123
|
+
"description": "String value indicating the application which authored the webmap.",
|
|
14124
|
+
"type": "string"
|
|
14125
|
+
},
|
|
14126
|
+
"authoringAppVersion": {
|
|
14127
|
+
"description": "String value indicating the authoring App's version number.",
|
|
14128
|
+
"type": "string"
|
|
14129
|
+
},
|
|
14130
|
+
"baseMap": {
|
|
14131
|
+
"$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
|
|
14132
|
+
"description": "The map's basemap layer(s). Layers are drawn based on the index position in the array; The first layer in the array is the first layer drawn, the next layer in the array is drawn on top of it, and so on."
|
|
14133
|
+
},
|
|
14134
|
+
"clippingArea": {
|
|
14135
|
+
"$ref": "__type",
|
|
14136
|
+
"description": "Defines are to be clipped for display. See {@link https://developers.arcgis.com/web-scene-specification/objects/clippingArea/}."
|
|
14137
|
+
},
|
|
14138
|
+
"ground": {
|
|
14139
|
+
"$ref": "#/definitions/esri.rest-api.GroundJson.GroundJson",
|
|
14140
|
+
"description": "Ground defines the main surface of the web scene, based on elevation layers."
|
|
14141
|
+
},
|
|
14142
|
+
"heightModelInfo": {
|
|
14143
|
+
"$ref": "#/definitions/esri.rest-api.WebSceneJson.HeightModelInfoJson",
|
|
14144
|
+
"description": "An object that defines the characteristics of the vertical coordinate system used by the web scene."
|
|
14145
|
+
},
|
|
14146
|
+
"initialState": {
|
|
14147
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
|
|
14148
|
+
"description": "The initial state at which to open the map."
|
|
14149
|
+
},
|
|
14150
|
+
"mapFloorInfo": {
|
|
14151
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
|
|
14152
|
+
"description": "Contains floor-awareness information for the map."
|
|
14153
|
+
},
|
|
14154
|
+
"mapRangeInfo": {
|
|
14155
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
|
|
14156
|
+
"description": "Map range information."
|
|
14157
|
+
},
|
|
14158
|
+
"operationalLayers": {
|
|
14159
|
+
"description": "Operational layers contain your business data. They are used to make thematic maps. Usually, a basemap sits beneath your operational layers to give them geographic context. See {@link https://developers.arcgis.com/web-map-specification/objects/operationalLayers/}.",
|
|
14160
|
+
"items": {
|
|
14161
|
+
"$ref": "#/definitions/OperationalLayerJson"
|
|
14162
|
+
},
|
|
14163
|
+
"type": "array"
|
|
14164
|
+
},
|
|
14165
|
+
"presentation": {
|
|
14166
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
|
|
14167
|
+
"description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
|
|
14168
|
+
},
|
|
14169
|
+
"spatialReference": {
|
|
14170
|
+
"$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
|
|
14171
|
+
"description": "An object used to specify the spatial reference of the given geometry."
|
|
14172
|
+
},
|
|
14173
|
+
"tables": {
|
|
14174
|
+
"description": "Specify an array of table objects.",
|
|
14175
|
+
"items": {
|
|
14176
|
+
"$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
|
|
14177
|
+
},
|
|
14178
|
+
"type": "array"
|
|
14179
|
+
},
|
|
14180
|
+
"timeZone": {
|
|
14181
|
+
"description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
|
|
14182
|
+
"type": "string"
|
|
14183
|
+
},
|
|
14184
|
+
"version": {
|
|
14185
|
+
"description": "Root element in the web map specifying a string value indicating the web map version. See {@link https://developers.arcgis.com/web-map-specification/objects/version/}.",
|
|
14186
|
+
"type": "string"
|
|
14187
|
+
},
|
|
14188
|
+
"viewingMode": {
|
|
14189
|
+
"description": "Must be one of the following values: \"global\" | \"local\".",
|
|
14190
|
+
"enum": [
|
|
14191
|
+
"global",
|
|
14192
|
+
"local"
|
|
14193
|
+
],
|
|
14194
|
+
"type": "string"
|
|
14195
|
+
},
|
|
14196
|
+
"widgets": {
|
|
14197
|
+
"$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
|
|
14198
|
+
"description": "The widgets object contains widgets that should be exposed to the user."
|
|
14199
|
+
}
|
|
14200
|
+
},
|
|
14201
|
+
"required": [
|
|
14202
|
+
"baseMap",
|
|
14203
|
+
"spatialReference",
|
|
14204
|
+
"version"
|
|
14205
|
+
],
|
|
14206
|
+
"type": "object"
|
|
14207
|
+
},
|
|
12831
14208
|
"esri.rest-api.WebTileLayerJson.TileInfoJson": {
|
|
12832
14209
|
"additionalProperties": false,
|
|
12833
14210
|
"description": "Tile information, returned from the WMTS OGC Web Service. The tileInfo will contain the spatial reference of the layer. TileInfo is the same json representation as the ArcGIS Map/Image service tileInfo except that it may contain a levelValue on the lod objects that should be used instead of the level in the templateUrl.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tileInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/tileInfo/}.",
|