@vertigis/viewer-spec 49.7.0 → 49.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/analytics/AnalyticsContext.d.ts +28 -0
- package/analytics/AnalyticsContext.js +1 -0
- package/analytics/CommonAction.d.ts +89 -0
- package/analytics/CommonAction.js +1 -0
- package/analytics/WebAction.d.ts +102 -0
- package/analytics/WebAction.js +1 -0
- 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/Command.d.ts +2 -1
- package/messaging/Message.d.ts +26 -0
- package/messaging/Operation.d.ts +2 -1
- package/messaging/registry/Commands.d.ts +4 -0
- package/messaging/registry/Commands.js +1 -1
- package/messaging/registry/app.d.ts +2 -2
- package/messaging/registry/map.d.ts +16 -0
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/studioAnalytics.d.ts +24 -0
- package/messaging/registry/studioAnalytics.js +1 -0
- package/messaging/schema/common-action.schema.json +974 -393
- package/messaging/schema/common-event.schema.json +645 -110
- package/messaging/schema/mobile-action.schema.json +956 -375
- package/messaging/schema/mobile-event.schema.json +662 -127
- package/messaging/schema/web-action.schema.json +1429 -677
- package/messaging/schema/web-event.schema.json +692 -172
- package/package.json +16 -15
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -61,22 +61,22 @@
|
|
|
61
61
|
"geometry": {
|
|
62
62
|
"anyOf": [
|
|
63
63
|
{
|
|
64
|
-
"$ref": "#/definitions/esri.
|
|
64
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
67
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
70
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
76
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
77
77
|
},
|
|
78
78
|
{
|
|
79
|
-
"$ref": "#/definitions/esri.
|
|
79
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
80
80
|
}
|
|
81
81
|
],
|
|
82
82
|
"description": "The feature's geometry."
|
|
@@ -350,6 +350,14 @@
|
|
|
350
350
|
},
|
|
351
351
|
"type": "object"
|
|
352
352
|
},
|
|
353
|
+
"@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
|
|
354
|
+
"description": "Viewing mode for a map (2D map or 3D scene).",
|
|
355
|
+
"enum": [
|
|
356
|
+
"map",
|
|
357
|
+
"scene"
|
|
358
|
+
],
|
|
359
|
+
"type": "string"
|
|
360
|
+
},
|
|
353
361
|
"@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
|
|
354
362
|
"additionalProperties": false,
|
|
355
363
|
"description": "Matches an existing layer.",
|
|
@@ -410,10 +418,10 @@
|
|
|
410
418
|
},
|
|
411
419
|
"@vertigis.arcgis-extensions.tasks.geocoding.Geocoder.AddressLike": {
|
|
412
420
|
"anyOf": [
|
|
421
|
+
{},
|
|
413
422
|
{
|
|
414
423
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
415
424
|
},
|
|
416
|
-
{},
|
|
417
425
|
{
|
|
418
426
|
"type": "string"
|
|
419
427
|
}
|
|
@@ -470,6 +478,10 @@
|
|
|
470
478
|
"description": "The maximum number of results to return.",
|
|
471
479
|
"type": "number"
|
|
472
480
|
},
|
|
481
|
+
"onSourceComplete": {
|
|
482
|
+
"$ref": "__type",
|
|
483
|
+
"description": "An optional callback that will be invoked with additional information about the tasks's result for each source."
|
|
484
|
+
},
|
|
473
485
|
"outSpatialReference": {
|
|
474
486
|
"$ref": "#/definitions/esri.SpatialReference",
|
|
475
487
|
"description": "The spatial reference for the returned geometry."
|
|
@@ -590,10 +602,19 @@
|
|
|
590
602
|
"layers": {
|
|
591
603
|
"anyOf": [
|
|
592
604
|
{
|
|
593
|
-
"$ref": "#/definitions/esri.
|
|
605
|
+
"$ref": "#/definitions/esri.PortalItem"
|
|
594
606
|
},
|
|
595
607
|
{
|
|
596
|
-
"$ref": "#/definitions/esri.
|
|
608
|
+
"$ref": "#/definitions/esri.rest-api.Item.Item"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"$ref": "#/definitions/esri.Layer"
|
|
597
618
|
},
|
|
598
619
|
{
|
|
599
620
|
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
|
|
@@ -604,9 +625,6 @@
|
|
|
604
625
|
{
|
|
605
626
|
"$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
|
|
606
627
|
},
|
|
607
|
-
{
|
|
608
|
-
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
609
|
-
},
|
|
610
628
|
{
|
|
611
629
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
|
|
612
630
|
},
|
|
@@ -616,6 +634,9 @@
|
|
|
616
634
|
{
|
|
617
635
|
"$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
|
|
618
636
|
},
|
|
637
|
+
{
|
|
638
|
+
"$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
|
|
639
|
+
},
|
|
619
640
|
{
|
|
620
641
|
"$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
|
|
621
642
|
},
|
|
@@ -635,31 +656,25 @@
|
|
|
635
656
|
"$ref": "#/definitions/esri.rest-api.SceneLayer.SceneLayer"
|
|
636
657
|
},
|
|
637
658
|
{
|
|
638
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
"$ref": "#/definitions/esri.rest-api.TiledMapServiceLayer.TiledMapServiceLayer"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
659
|
+
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
645
660
|
},
|
|
646
661
|
{
|
|
647
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
662
|
+
"$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
|
|
648
663
|
},
|
|
649
664
|
{
|
|
650
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
665
|
+
"$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
|
|
651
666
|
},
|
|
652
667
|
{
|
|
653
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
668
|
+
"$ref": "#/definitions/esri.rest-api.TiledMapServiceLayer.TiledMapServiceLayer"
|
|
654
669
|
},
|
|
655
670
|
{
|
|
656
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
671
|
+
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
657
672
|
},
|
|
658
673
|
{
|
|
659
|
-
"$ref": "
|
|
674
|
+
"$ref": "#/definitions/esri.rest-api.WebTileLayer.WebTileLayer"
|
|
660
675
|
},
|
|
661
676
|
{
|
|
662
|
-
"$ref": "
|
|
677
|
+
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
663
678
|
},
|
|
664
679
|
{
|
|
665
680
|
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
@@ -668,10 +683,19 @@
|
|
|
668
683
|
"items": {
|
|
669
684
|
"anyOf": [
|
|
670
685
|
{
|
|
671
|
-
"$ref": "#/definitions/esri.
|
|
686
|
+
"$ref": "#/definitions/esri.PortalItem"
|
|
672
687
|
},
|
|
673
688
|
{
|
|
674
|
-
"$ref": "#/definitions/esri.
|
|
689
|
+
"$ref": "#/definitions/esri.rest-api.Item.Item"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"$ref": "#/definitions/esri.Layer"
|
|
675
699
|
},
|
|
676
700
|
{
|
|
677
701
|
"$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
|
|
@@ -682,9 +706,6 @@
|
|
|
682
706
|
{
|
|
683
707
|
"$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
|
|
684
708
|
},
|
|
685
|
-
{
|
|
686
|
-
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
687
|
-
},
|
|
688
709
|
{
|
|
689
710
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
|
|
690
711
|
},
|
|
@@ -694,6 +715,9 @@
|
|
|
694
715
|
{
|
|
695
716
|
"$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
|
|
696
717
|
},
|
|
718
|
+
{
|
|
719
|
+
"$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
|
|
720
|
+
},
|
|
697
721
|
{
|
|
698
722
|
"$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
|
|
699
723
|
},
|
|
@@ -713,31 +737,25 @@
|
|
|
713
737
|
"$ref": "#/definitions/esri.rest-api.SceneLayer.SceneLayer"
|
|
714
738
|
},
|
|
715
739
|
{
|
|
716
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
717
|
-
},
|
|
718
|
-
{
|
|
719
|
-
"$ref": "#/definitions/esri.rest-api.TiledMapServiceLayer.TiledMapServiceLayer"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
740
|
+
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
723
741
|
},
|
|
724
742
|
{
|
|
725
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
743
|
+
"$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
|
|
726
744
|
},
|
|
727
745
|
{
|
|
728
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
746
|
+
"$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
|
|
729
747
|
},
|
|
730
748
|
{
|
|
731
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
749
|
+
"$ref": "#/definitions/esri.rest-api.TiledMapServiceLayer.TiledMapServiceLayer"
|
|
732
750
|
},
|
|
733
751
|
{
|
|
734
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
752
|
+
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
735
753
|
},
|
|
736
754
|
{
|
|
737
|
-
"$ref": "
|
|
755
|
+
"$ref": "#/definitions/esri.rest-api.WebTileLayer.WebTileLayer"
|
|
738
756
|
},
|
|
739
757
|
{
|
|
740
|
-
"$ref": "
|
|
758
|
+
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
741
759
|
},
|
|
742
760
|
{
|
|
743
761
|
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
@@ -1001,10 +1019,10 @@
|
|
|
1001
1019
|
"description": "The addresses to look up.",
|
|
1002
1020
|
"items": {
|
|
1003
1021
|
"anyOf": [
|
|
1022
|
+
{},
|
|
1004
1023
|
{
|
|
1005
1024
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
1006
1025
|
},
|
|
1007
|
-
{},
|
|
1008
1026
|
{
|
|
1009
1027
|
"type": "string"
|
|
1010
1028
|
}
|
|
@@ -1110,25 +1128,25 @@
|
|
|
1110
1128
|
"symbol": {
|
|
1111
1129
|
"anyOf": [
|
|
1112
1130
|
{
|
|
1113
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1131
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
1114
1132
|
},
|
|
1115
1133
|
{
|
|
1116
1134
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1117
1135
|
},
|
|
1118
1136
|
{
|
|
1119
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1137
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
1120
1138
|
},
|
|
1121
1139
|
{
|
|
1122
1140
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
1123
1141
|
},
|
|
1124
1142
|
{
|
|
1125
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1143
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
1126
1144
|
},
|
|
1127
1145
|
{
|
|
1128
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1146
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
1129
1147
|
},
|
|
1130
1148
|
{
|
|
1131
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1149
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1132
1150
|
},
|
|
1133
1151
|
{
|
|
1134
1152
|
"$ref": "#/definitions/SymbolSet"
|
|
@@ -1588,10 +1606,10 @@
|
|
|
1588
1606
|
},
|
|
1589
1607
|
"result": {
|
|
1590
1608
|
"anyOf": [
|
|
1609
|
+
{},
|
|
1591
1610
|
{
|
|
1592
1611
|
"$ref": "Blob"
|
|
1593
1612
|
},
|
|
1594
|
-
{},
|
|
1595
1613
|
{
|
|
1596
1614
|
"type": "string"
|
|
1597
1615
|
}
|
|
@@ -1608,49 +1626,49 @@
|
|
|
1608
1626
|
"DrawingSymbolConfig": {
|
|
1609
1627
|
"anyOf": [
|
|
1610
1628
|
{
|
|
1611
|
-
"$ref": "#/definitions/esri.
|
|
1629
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
1612
1630
|
},
|
|
1613
1631
|
{
|
|
1614
|
-
"$ref": "#/definitions/esri.
|
|
1632
|
+
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1615
1633
|
},
|
|
1616
1634
|
{
|
|
1617
|
-
"$ref": "#/definitions/esri.
|
|
1635
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
1618
1636
|
},
|
|
1619
1637
|
{
|
|
1620
|
-
"$ref": "#/definitions/esri.
|
|
1638
|
+
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
1621
1639
|
},
|
|
1622
1640
|
{
|
|
1623
|
-
"$ref": "#/definitions/esri.
|
|
1641
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
1624
1642
|
},
|
|
1625
1643
|
{
|
|
1626
|
-
"$ref": "#/definitions/esri.
|
|
1644
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
1627
1645
|
},
|
|
1628
1646
|
{
|
|
1629
|
-
"$ref": "#/definitions/esri.
|
|
1647
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
1630
1648
|
},
|
|
1631
1649
|
{
|
|
1632
|
-
"$ref": "#/definitions/esri.
|
|
1650
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
1633
1651
|
},
|
|
1634
1652
|
{
|
|
1635
|
-
"$ref": "#/definitions/esri.
|
|
1653
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
1636
1654
|
},
|
|
1637
1655
|
{
|
|
1638
|
-
"$ref": "#/definitions/esri.
|
|
1656
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
1639
1657
|
},
|
|
1640
1658
|
{
|
|
1641
|
-
"$ref": "#/definitions/esri.
|
|
1659
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
1642
1660
|
},
|
|
1643
1661
|
{
|
|
1644
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
1662
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
1645
1663
|
},
|
|
1646
1664
|
{
|
|
1647
|
-
"$ref": "#/definitions/esri.
|
|
1665
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
1648
1666
|
},
|
|
1649
1667
|
{
|
|
1650
1668
|
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
1651
1669
|
},
|
|
1652
1670
|
{
|
|
1653
|
-
"$ref": "#/definitions/esri.
|
|
1671
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
1654
1672
|
},
|
|
1655
1673
|
{
|
|
1656
1674
|
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
@@ -1707,19 +1725,19 @@
|
|
|
1707
1725
|
"$ref": "#/definitions/esri.Symbol"
|
|
1708
1726
|
},
|
|
1709
1727
|
{
|
|
1710
|
-
"$ref": "#/definitions/esri.
|
|
1728
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
1711
1729
|
},
|
|
1712
1730
|
{
|
|
1713
1731
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
1714
1732
|
},
|
|
1715
1733
|
{
|
|
1716
|
-
"$ref": "#/definitions/esri.
|
|
1734
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
1717
1735
|
},
|
|
1718
1736
|
{
|
|
1719
|
-
"$ref": "#/definitions/esri.
|
|
1737
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
1720
1738
|
},
|
|
1721
1739
|
{
|
|
1722
|
-
"$ref": "#/definitions/esri.
|
|
1740
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
1723
1741
|
},
|
|
1724
1742
|
{
|
|
1725
1743
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -1807,19 +1825,19 @@
|
|
|
1807
1825
|
"$ref": "#/definitions/esri.Symbol"
|
|
1808
1826
|
},
|
|
1809
1827
|
{
|
|
1810
|
-
"$ref": "#/definitions/esri.
|
|
1828
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
1811
1829
|
},
|
|
1812
1830
|
{
|
|
1813
1831
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
1814
1832
|
},
|
|
1815
1833
|
{
|
|
1816
|
-
"$ref": "#/definitions/esri.
|
|
1834
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
1817
1835
|
},
|
|
1818
1836
|
{
|
|
1819
|
-
"$ref": "#/definitions/esri.
|
|
1837
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
1820
1838
|
},
|
|
1821
1839
|
{
|
|
1822
|
-
"$ref": "#/definitions/esri.
|
|
1840
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
1823
1841
|
},
|
|
1824
1842
|
{
|
|
1825
1843
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -2006,26 +2024,26 @@
|
|
|
2006
2024
|
},
|
|
2007
2025
|
"Features": {
|
|
2008
2026
|
"anyOf": [
|
|
2009
|
-
{
|
|
2010
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2011
|
-
},
|
|
2012
2027
|
{
|
|
2013
2028
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2014
2029
|
},
|
|
2015
2030
|
{
|
|
2016
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
2031
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2017
2032
|
},
|
|
2018
2033
|
{
|
|
2019
2034
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2020
2035
|
},
|
|
2036
|
+
{
|
|
2037
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2038
|
+
},
|
|
2021
2039
|
{
|
|
2022
2040
|
"items": {
|
|
2023
2041
|
"anyOf": [
|
|
2024
2042
|
{
|
|
2025
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2043
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2026
2044
|
},
|
|
2027
2045
|
{
|
|
2028
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2046
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2029
2047
|
}
|
|
2030
2048
|
]
|
|
2031
2049
|
},
|
|
@@ -2039,26 +2057,26 @@
|
|
|
2039
2057
|
},
|
|
2040
2058
|
"FeaturesLike": {
|
|
2041
2059
|
"anyOf": [
|
|
2042
|
-
{
|
|
2043
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2044
|
-
},
|
|
2045
2060
|
{
|
|
2046
2061
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2047
2062
|
},
|
|
2048
2063
|
{
|
|
2049
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
2064
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2050
2065
|
},
|
|
2051
2066
|
{
|
|
2052
2067
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2053
2068
|
},
|
|
2069
|
+
{
|
|
2070
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2071
|
+
},
|
|
2054
2072
|
{
|
|
2055
2073
|
"items": {
|
|
2056
2074
|
"anyOf": [
|
|
2057
2075
|
{
|
|
2058
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2076
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2059
2077
|
},
|
|
2060
2078
|
{
|
|
2061
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2079
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2062
2080
|
}
|
|
2063
2081
|
]
|
|
2064
2082
|
},
|
|
@@ -2129,42 +2147,42 @@
|
|
|
2129
2147
|
"features": {
|
|
2130
2148
|
"anyOf": [
|
|
2131
2149
|
{
|
|
2132
|
-
"$ref": "#/definitions/
|
|
2133
|
-
},
|
|
2134
|
-
{
|
|
2135
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
2136
|
-
},
|
|
2137
|
-
{
|
|
2138
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2150
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
2139
2151
|
},
|
|
2140
2152
|
{
|
|
2141
|
-
"$ref": "
|
|
2153
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
2142
2154
|
},
|
|
2143
2155
|
{
|
|
2144
2156
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2145
2157
|
},
|
|
2146
2158
|
{
|
|
2147
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
2159
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2148
2160
|
},
|
|
2149
2161
|
{
|
|
2150
2162
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2151
2163
|
},
|
|
2152
2164
|
{
|
|
2153
|
-
"$ref": "
|
|
2165
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2154
2166
|
},
|
|
2155
2167
|
{
|
|
2156
2168
|
"items": {
|
|
2157
2169
|
"anyOf": [
|
|
2158
2170
|
{
|
|
2159
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2171
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2160
2172
|
},
|
|
2161
2173
|
{
|
|
2162
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2174
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2163
2175
|
}
|
|
2164
2176
|
]
|
|
2165
2177
|
},
|
|
2166
2178
|
"type": "array"
|
|
2167
2179
|
},
|
|
2180
|
+
{
|
|
2181
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
2185
|
+
},
|
|
2168
2186
|
{
|
|
2169
2187
|
"items": {
|
|
2170
2188
|
"anyOf": [
|
|
@@ -2542,55 +2560,31 @@
|
|
|
2542
2560
|
"Geometries": {
|
|
2543
2561
|
"anyOf": [
|
|
2544
2562
|
{
|
|
2545
|
-
"$ref": "#/definitions/
|
|
2563
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
2546
2564
|
},
|
|
2547
2565
|
{
|
|
2548
2566
|
"$ref": "#/definitions/esri.Graphic"
|
|
2549
2567
|
},
|
|
2550
|
-
{
|
|
2551
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
2552
|
-
},
|
|
2553
|
-
{
|
|
2554
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2555
|
-
},
|
|
2556
|
-
{
|
|
2557
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2558
|
-
},
|
|
2559
|
-
{
|
|
2560
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2561
|
-
},
|
|
2562
|
-
{
|
|
2563
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2564
|
-
},
|
|
2565
|
-
{
|
|
2566
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2567
|
-
},
|
|
2568
|
-
{
|
|
2569
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2570
|
-
},
|
|
2571
|
-
{
|
|
2572
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2573
|
-
},
|
|
2574
2568
|
{
|
|
2575
2569
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2576
2570
|
},
|
|
2577
2571
|
{
|
|
2578
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
2572
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2579
2573
|
},
|
|
2580
2574
|
{
|
|
2581
2575
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2582
2576
|
},
|
|
2583
2577
|
{
|
|
2584
|
-
"$ref": "
|
|
2578
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2585
2579
|
},
|
|
2586
2580
|
{
|
|
2587
2581
|
"items": {
|
|
2588
2582
|
"anyOf": [
|
|
2589
2583
|
{
|
|
2590
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2584
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2591
2585
|
},
|
|
2592
2586
|
{
|
|
2593
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2587
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2594
2588
|
}
|
|
2595
2589
|
]
|
|
2596
2590
|
},
|
|
@@ -2599,6 +2593,12 @@
|
|
|
2599
2593
|
{
|
|
2600
2594
|
"$ref": "#/definitions/HasFeatures"
|
|
2601
2595
|
},
|
|
2596
|
+
{
|
|
2597
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
2601
|
+
},
|
|
2602
2602
|
{
|
|
2603
2603
|
"items": {
|
|
2604
2604
|
"anyOf": [
|
|
@@ -2613,25 +2613,43 @@
|
|
|
2613
2613
|
"type": "array"
|
|
2614
2614
|
},
|
|
2615
2615
|
{
|
|
2616
|
-
"
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2616
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"items": {
|
|
2635
|
+
"anyOf": [
|
|
2633
2636
|
{
|
|
2634
2637
|
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
2635
2653
|
}
|
|
2636
2654
|
]
|
|
2637
2655
|
},
|
|
@@ -2681,60 +2699,42 @@
|
|
|
2681
2699
|
"GeometryLike": {
|
|
2682
2700
|
"anyOf": [
|
|
2683
2701
|
{
|
|
2684
|
-
"$ref": "#/definitions/
|
|
2702
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
2685
2703
|
},
|
|
2686
2704
|
{
|
|
2687
2705
|
"$ref": "#/definitions/esri.Graphic"
|
|
2688
2706
|
},
|
|
2689
|
-
{
|
|
2690
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
2691
|
-
},
|
|
2692
|
-
{
|
|
2693
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2694
|
-
},
|
|
2695
|
-
{
|
|
2696
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2697
|
-
},
|
|
2698
|
-
{
|
|
2699
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2700
|
-
},
|
|
2701
|
-
{
|
|
2702
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2703
|
-
},
|
|
2704
|
-
{
|
|
2705
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2709
|
-
},
|
|
2710
|
-
{
|
|
2711
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2712
|
-
},
|
|
2713
2707
|
{
|
|
2714
2708
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2715
2709
|
},
|
|
2716
2710
|
{
|
|
2717
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
2711
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
2718
2712
|
},
|
|
2719
2713
|
{
|
|
2720
2714
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
2721
2715
|
},
|
|
2722
2716
|
{
|
|
2723
|
-
"$ref": "
|
|
2717
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
2724
2718
|
},
|
|
2725
2719
|
{
|
|
2726
2720
|
"items": {
|
|
2727
2721
|
"anyOf": [
|
|
2728
2722
|
{
|
|
2729
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2723
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
2730
2724
|
},
|
|
2731
2725
|
{
|
|
2732
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
2726
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
2733
2727
|
}
|
|
2734
2728
|
]
|
|
2735
2729
|
},
|
|
2736
2730
|
"type": "array"
|
|
2737
2731
|
},
|
|
2732
|
+
{
|
|
2733
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
2737
|
+
},
|
|
2738
2738
|
{
|
|
2739
2739
|
"items": {
|
|
2740
2740
|
"anyOf": [
|
|
@@ -2748,26 +2748,44 @@
|
|
|
2748
2748
|
},
|
|
2749
2749
|
"type": "array"
|
|
2750
2750
|
},
|
|
2751
|
+
{
|
|
2752
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2765
|
+
},
|
|
2766
|
+
{
|
|
2767
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
2768
|
+
},
|
|
2751
2769
|
{
|
|
2752
2770
|
"items": {
|
|
2753
2771
|
"anyOf": [
|
|
2754
2772
|
{
|
|
2755
|
-
"$ref": "#/definitions/esri.
|
|
2773
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
2756
2774
|
},
|
|
2757
2775
|
{
|
|
2758
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
2776
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
2759
2777
|
},
|
|
2760
2778
|
{
|
|
2761
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
2779
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
2762
2780
|
},
|
|
2763
2781
|
{
|
|
2764
2782
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
2765
2783
|
},
|
|
2766
2784
|
{
|
|
2767
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
2785
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
2768
2786
|
},
|
|
2769
2787
|
{
|
|
2770
|
-
"$ref": "#/definitions/esri.
|
|
2788
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
2771
2789
|
}
|
|
2772
2790
|
]
|
|
2773
2791
|
},
|
|
@@ -2806,19 +2824,19 @@
|
|
|
2806
2824
|
"$ref": "#/definitions/esri.Symbol"
|
|
2807
2825
|
},
|
|
2808
2826
|
{
|
|
2809
|
-
"$ref": "#/definitions/esri.
|
|
2827
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
2810
2828
|
},
|
|
2811
2829
|
{
|
|
2812
2830
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
2813
2831
|
},
|
|
2814
2832
|
{
|
|
2815
|
-
"$ref": "#/definitions/esri.
|
|
2833
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
2816
2834
|
},
|
|
2817
2835
|
{
|
|
2818
|
-
"$ref": "#/definitions/esri.
|
|
2836
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
2819
2837
|
},
|
|
2820
2838
|
{
|
|
2821
|
-
"$ref": "#/definitions/esri.
|
|
2839
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
2822
2840
|
},
|
|
2823
2841
|
{
|
|
2824
2842
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -3061,16 +3079,16 @@
|
|
|
3061
3079
|
"GraphicsLike": {
|
|
3062
3080
|
"anyOf": [
|
|
3063
3081
|
{
|
|
3064
|
-
"$ref": "#/definitions/
|
|
3082
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
3065
3083
|
},
|
|
3066
3084
|
{
|
|
3067
|
-
"$ref": "#/definitions/esri.
|
|
3085
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
3068
3086
|
},
|
|
3069
3087
|
{
|
|
3070
3088
|
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
3071
3089
|
},
|
|
3072
3090
|
{
|
|
3073
|
-
"$ref": "#/definitions/
|
|
3091
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
3074
3092
|
},
|
|
3075
3093
|
{
|
|
3076
3094
|
"items": {
|
|
@@ -3331,16 +3349,16 @@
|
|
|
3331
3349
|
"Layers": {
|
|
3332
3350
|
"anyOf": [
|
|
3333
3351
|
{
|
|
3334
|
-
"$ref": "#/definitions
|
|
3352
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
3335
3353
|
},
|
|
3336
3354
|
{
|
|
3337
|
-
"$ref": "esri.
|
|
3355
|
+
"$ref": "#/definitions/esri.Layer"
|
|
3338
3356
|
},
|
|
3339
3357
|
{
|
|
3340
|
-
"$ref": "
|
|
3358
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
3341
3359
|
},
|
|
3342
3360
|
{
|
|
3343
|
-
"$ref": "
|
|
3361
|
+
"$ref": "esri.SublayerLike"
|
|
3344
3362
|
},
|
|
3345
3363
|
{
|
|
3346
3364
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -3349,16 +3367,16 @@
|
|
|
3349
3367
|
"items": {
|
|
3350
3368
|
"anyOf": [
|
|
3351
3369
|
{
|
|
3352
|
-
"$ref": "#/definitions
|
|
3370
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
3353
3371
|
},
|
|
3354
3372
|
{
|
|
3355
|
-
"$ref": "esri.
|
|
3373
|
+
"$ref": "#/definitions/esri.Layer"
|
|
3356
3374
|
},
|
|
3357
3375
|
{
|
|
3358
|
-
"$ref": "
|
|
3376
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
3359
3377
|
},
|
|
3360
3378
|
{
|
|
3361
|
-
"$ref": "
|
|
3379
|
+
"$ref": "esri.SublayerLike"
|
|
3362
3380
|
},
|
|
3363
3381
|
{
|
|
3364
3382
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -3383,16 +3401,16 @@
|
|
|
3383
3401
|
"LayersLike": {
|
|
3384
3402
|
"anyOf": [
|
|
3385
3403
|
{
|
|
3386
|
-
"$ref": "#/definitions
|
|
3404
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
3387
3405
|
},
|
|
3388
3406
|
{
|
|
3389
|
-
"$ref": "esri.
|
|
3407
|
+
"$ref": "#/definitions/esri.Layer"
|
|
3390
3408
|
},
|
|
3391
3409
|
{
|
|
3392
|
-
"$ref": "
|
|
3410
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
3393
3411
|
},
|
|
3394
3412
|
{
|
|
3395
|
-
"$ref": "
|
|
3413
|
+
"$ref": "esri.SublayerLike"
|
|
3396
3414
|
},
|
|
3397
3415
|
{
|
|
3398
3416
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -3401,16 +3419,16 @@
|
|
|
3401
3419
|
"items": {
|
|
3402
3420
|
"anyOf": [
|
|
3403
3421
|
{
|
|
3404
|
-
"$ref": "#/definitions
|
|
3422
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
3405
3423
|
},
|
|
3406
3424
|
{
|
|
3407
|
-
"$ref": "esri.
|
|
3425
|
+
"$ref": "#/definitions/esri.Layer"
|
|
3408
3426
|
},
|
|
3409
3427
|
{
|
|
3410
|
-
"$ref": "
|
|
3428
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
3411
3429
|
},
|
|
3412
3430
|
{
|
|
3413
|
-
"$ref": "
|
|
3431
|
+
"$ref": "esri.SublayerLike"
|
|
3414
3432
|
},
|
|
3415
3433
|
{
|
|
3416
3434
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -3446,14 +3464,14 @@
|
|
|
3446
3464
|
{
|
|
3447
3465
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
3448
3466
|
},
|
|
3449
|
-
{
|
|
3450
|
-
"$ref": "#/definitions/HasMaps"
|
|
3451
|
-
},
|
|
3452
3467
|
{
|
|
3453
3468
|
"items": {
|
|
3454
3469
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
3455
3470
|
},
|
|
3456
3471
|
"type": "array"
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
"$ref": "#/definitions/HasMaps"
|
|
3457
3475
|
}
|
|
3458
3476
|
],
|
|
3459
3477
|
"description": "One or more map extensions, or an object that has map extensions."
|
|
@@ -3475,10 +3493,10 @@
|
|
|
3475
3493
|
"MapsRef": {
|
|
3476
3494
|
"anyOf": [
|
|
3477
3495
|
{
|
|
3478
|
-
"$ref": "
|
|
3496
|
+
"$ref": "#/definitions/Model"
|
|
3479
3497
|
},
|
|
3480
3498
|
{
|
|
3481
|
-
"$ref": "
|
|
3499
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
3482
3500
|
},
|
|
3483
3501
|
{
|
|
3484
3502
|
"items": {
|
|
@@ -3563,19 +3581,19 @@
|
|
|
3563
3581
|
"$ref": "#/definitions/esri.Symbol"
|
|
3564
3582
|
},
|
|
3565
3583
|
{
|
|
3566
|
-
"$ref": "#/definitions/esri.
|
|
3584
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
3567
3585
|
},
|
|
3568
3586
|
{
|
|
3569
3587
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
3570
3588
|
},
|
|
3571
3589
|
{
|
|
3572
|
-
"$ref": "#/definitions/esri.
|
|
3590
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
3573
3591
|
},
|
|
3574
3592
|
{
|
|
3575
|
-
"$ref": "#/definitions/esri.
|
|
3593
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
3576
3594
|
},
|
|
3577
3595
|
{
|
|
3578
|
-
"$ref": "#/definitions/esri.
|
|
3596
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
3579
3597
|
},
|
|
3580
3598
|
{
|
|
3581
3599
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -3763,9 +3781,6 @@
|
|
|
3763
3781
|
{
|
|
3764
3782
|
"$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
|
|
3765
3783
|
},
|
|
3766
|
-
{
|
|
3767
|
-
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
3768
|
-
},
|
|
3769
3784
|
{
|
|
3770
3785
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
|
|
3771
3786
|
},
|
|
@@ -3775,6 +3790,9 @@
|
|
|
3775
3790
|
{
|
|
3776
3791
|
"$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
|
|
3777
3792
|
},
|
|
3793
|
+
{
|
|
3794
|
+
"$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
|
|
3795
|
+
},
|
|
3778
3796
|
{
|
|
3779
3797
|
"$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
|
|
3780
3798
|
},
|
|
@@ -3793,6 +3811,12 @@
|
|
|
3793
3811
|
{
|
|
3794
3812
|
"$ref": "#/definitions/esri.rest-api.SceneLayer.SceneLayer"
|
|
3795
3813
|
},
|
|
3814
|
+
{
|
|
3815
|
+
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
3816
|
+
},
|
|
3817
|
+
{
|
|
3818
|
+
"$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
|
|
3819
|
+
},
|
|
3796
3820
|
{
|
|
3797
3821
|
"$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
|
|
3798
3822
|
},
|
|
@@ -3802,14 +3826,11 @@
|
|
|
3802
3826
|
{
|
|
3803
3827
|
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
3804
3828
|
},
|
|
3805
|
-
{
|
|
3806
|
-
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
3807
|
-
},
|
|
3808
3829
|
{
|
|
3809
3830
|
"$ref": "#/definitions/esri.rest-api.WebTileLayer.WebTileLayer"
|
|
3810
3831
|
},
|
|
3811
3832
|
{
|
|
3812
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
3833
|
+
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
3813
3834
|
}
|
|
3814
3835
|
],
|
|
3815
3836
|
"description": "An operational layer in a web map/scene."
|
|
@@ -4051,19 +4072,19 @@
|
|
|
4051
4072
|
"$ref": "#/definitions/esri.Symbol"
|
|
4052
4073
|
},
|
|
4053
4074
|
{
|
|
4054
|
-
"$ref": "#/definitions/esri.
|
|
4075
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4055
4076
|
},
|
|
4056
4077
|
{
|
|
4057
4078
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4058
4079
|
},
|
|
4059
4080
|
{
|
|
4060
|
-
"$ref": "#/definitions/esri.
|
|
4081
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4061
4082
|
},
|
|
4062
4083
|
{
|
|
4063
|
-
"$ref": "#/definitions/esri.
|
|
4084
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4064
4085
|
},
|
|
4065
4086
|
{
|
|
4066
|
-
"$ref": "#/definitions/esri.
|
|
4087
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4067
4088
|
},
|
|
4068
4089
|
{
|
|
4069
4090
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -4274,19 +4295,19 @@
|
|
|
4274
4295
|
"$ref": "#/definitions/esri.Symbol"
|
|
4275
4296
|
},
|
|
4276
4297
|
{
|
|
4277
|
-
"$ref": "#/definitions/esri.
|
|
4298
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4278
4299
|
},
|
|
4279
4300
|
{
|
|
4280
4301
|
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4281
4302
|
},
|
|
4282
4303
|
{
|
|
4283
|
-
"$ref": "#/definitions/esri.
|
|
4304
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4284
4305
|
},
|
|
4285
4306
|
{
|
|
4286
|
-
"$ref": "#/definitions/esri.
|
|
4307
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4287
4308
|
},
|
|
4288
4309
|
{
|
|
4289
|
-
"$ref": "#/definitions/esri.
|
|
4310
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4290
4311
|
},
|
|
4291
4312
|
{
|
|
4292
4313
|
"$ref": "#/definitions/esri.TextSymbol"
|
|
@@ -4597,6 +4618,24 @@
|
|
|
4597
4618
|
"description": "Arguments for the layer.set-symbol command.",
|
|
4598
4619
|
"properties": {}
|
|
4599
4620
|
},
|
|
4621
|
+
"SetViewModeArgs": {
|
|
4622
|
+
"additionalProperties": false,
|
|
4623
|
+
"description": "Arguments for the \"map.set-view-mode\" command.",
|
|
4624
|
+
"properties": {
|
|
4625
|
+
"maps": {
|
|
4626
|
+
"$ref": "MapsLike",
|
|
4627
|
+
"description": "Map(s) to use for the command/operation."
|
|
4628
|
+
},
|
|
4629
|
+
"viewMode": {
|
|
4630
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode",
|
|
4631
|
+
"description": "The new view mode for the specified map(s)."
|
|
4632
|
+
}
|
|
4633
|
+
},
|
|
4634
|
+
"required": [
|
|
4635
|
+
"viewMode"
|
|
4636
|
+
],
|
|
4637
|
+
"type": "object"
|
|
4638
|
+
},
|
|
4600
4639
|
"SetVisualStateArgs": {
|
|
4601
4640
|
"additionalProperties": false,
|
|
4602
4641
|
"description": "Arguments for the \"ui.set-visual-state\" command.",
|
|
@@ -4618,26 +4657,26 @@
|
|
|
4618
4657
|
},
|
|
4619
4658
|
"ShowResultsArgs": {
|
|
4620
4659
|
"anyOf": [
|
|
4621
|
-
{
|
|
4622
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
4623
|
-
},
|
|
4624
4660
|
{
|
|
4625
4661
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
4626
4662
|
},
|
|
4627
4663
|
{
|
|
4628
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
4664
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
4629
4665
|
},
|
|
4630
4666
|
{
|
|
4631
4667
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
4632
4668
|
},
|
|
4669
|
+
{
|
|
4670
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
4671
|
+
},
|
|
4633
4672
|
{
|
|
4634
4673
|
"items": {
|
|
4635
4674
|
"anyOf": [
|
|
4636
4675
|
{
|
|
4637
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
4676
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
4638
4677
|
},
|
|
4639
4678
|
{
|
|
4640
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
4679
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
4641
4680
|
}
|
|
4642
4681
|
]
|
|
4643
4682
|
},
|
|
@@ -4769,49 +4808,49 @@
|
|
|
4769
4808
|
"SymbolLike": {
|
|
4770
4809
|
"anyOf": [
|
|
4771
4810
|
{
|
|
4772
|
-
"$ref": "#/definitions/esri.
|
|
4811
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
4773
4812
|
},
|
|
4774
4813
|
{
|
|
4775
|
-
"$ref": "#/definitions/esri.
|
|
4814
|
+
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
4776
4815
|
},
|
|
4777
4816
|
{
|
|
4778
|
-
"$ref": "#/definitions/esri.
|
|
4817
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
4779
4818
|
},
|
|
4780
4819
|
{
|
|
4781
|
-
"$ref": "#/definitions/esri.
|
|
4820
|
+
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
4782
4821
|
},
|
|
4783
4822
|
{
|
|
4784
|
-
"$ref": "#/definitions/esri.
|
|
4823
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
4785
4824
|
},
|
|
4786
4825
|
{
|
|
4787
|
-
"$ref": "#/definitions/esri.
|
|
4826
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4788
4827
|
},
|
|
4789
4828
|
{
|
|
4790
|
-
"$ref": "#/definitions/esri.
|
|
4829
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4791
4830
|
},
|
|
4792
4831
|
{
|
|
4793
|
-
"$ref": "#/definitions/esri.
|
|
4832
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4794
4833
|
},
|
|
4795
4834
|
{
|
|
4796
|
-
"$ref": "#/definitions/esri.
|
|
4835
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4797
4836
|
},
|
|
4798
4837
|
{
|
|
4799
|
-
"$ref": "#/definitions/esri.
|
|
4838
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4800
4839
|
},
|
|
4801
4840
|
{
|
|
4802
|
-
"$ref": "#/definitions/esri.
|
|
4841
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
4803
4842
|
},
|
|
4804
4843
|
{
|
|
4805
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
4844
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
4806
4845
|
},
|
|
4807
4846
|
{
|
|
4808
|
-
"$ref": "#/definitions/esri.
|
|
4847
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
4809
4848
|
},
|
|
4810
4849
|
{
|
|
4811
4850
|
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
4812
4851
|
},
|
|
4813
4852
|
{
|
|
4814
|
-
"$ref": "#/definitions/esri.
|
|
4853
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
4815
4854
|
},
|
|
4816
4855
|
{
|
|
4817
4856
|
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
@@ -4857,10 +4896,10 @@
|
|
|
4857
4896
|
"lineSymbol": {
|
|
4858
4897
|
"anyOf": [
|
|
4859
4898
|
{
|
|
4860
|
-
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4899
|
+
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
4861
4900
|
},
|
|
4862
4901
|
{
|
|
4863
|
-
"$ref": "#/definitions/esri.
|
|
4902
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
4864
4903
|
}
|
|
4865
4904
|
],
|
|
4866
4905
|
"description": "The symbol used to draw lines."
|
|
@@ -4879,16 +4918,16 @@
|
|
|
4879
4918
|
"pointSymbol": {
|
|
4880
4919
|
"anyOf": [
|
|
4881
4920
|
{
|
|
4882
|
-
"$ref": "#/definitions/esri.
|
|
4921
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
4883
4922
|
},
|
|
4884
4923
|
{
|
|
4885
|
-
"$ref": "#/definitions/esri.
|
|
4924
|
+
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
4886
4925
|
},
|
|
4887
4926
|
{
|
|
4888
|
-
"$ref": "#/definitions/esri.
|
|
4927
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
4889
4928
|
},
|
|
4890
4929
|
{
|
|
4891
|
-
"$ref": "#/definitions/esri.
|
|
4930
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
4892
4931
|
}
|
|
4893
4932
|
],
|
|
4894
4933
|
"description": "The symbol used to draw points."
|
|
@@ -4907,16 +4946,16 @@
|
|
|
4907
4946
|
"polygonSymbol": {
|
|
4908
4947
|
"anyOf": [
|
|
4909
4948
|
{
|
|
4910
|
-
"$ref": "#/definitions/esri.
|
|
4949
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
4911
4950
|
},
|
|
4912
4951
|
{
|
|
4913
|
-
"$ref": "#/definitions/esri.
|
|
4952
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
4914
4953
|
},
|
|
4915
4954
|
{
|
|
4916
|
-
"$ref": "#/definitions/esri.
|
|
4955
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
4917
4956
|
},
|
|
4918
4957
|
{
|
|
4919
|
-
"$ref": "#/definitions/esri.
|
|
4958
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
4920
4959
|
}
|
|
4921
4960
|
],
|
|
4922
4961
|
"description": "The symbol used to draw polygons."
|
|
@@ -5145,6 +5184,24 @@
|
|
|
5145
5184
|
],
|
|
5146
5185
|
"type": "object"
|
|
5147
5186
|
},
|
|
5187
|
+
"TrackCustomEventArgs": {
|
|
5188
|
+
"additionalProperties": false,
|
|
5189
|
+
"description": "Arguments for the 'studio-analytics.track-custom-event' command.",
|
|
5190
|
+
"properties": {
|
|
5191
|
+
"name": {
|
|
5192
|
+
"description": "The name of the event. The event name should be in kebab-case, present tense, and follow a `{noun phrase}-{verb}` pattern, where `{verb}` is a single word without hyphens. Example: \"parcel-boundary-move\".",
|
|
5193
|
+
"type": "string"
|
|
5194
|
+
},
|
|
5195
|
+
"payload": {
|
|
5196
|
+
"description": "Optional. Additional event-specific data of interest.",
|
|
5197
|
+
"type": "string"
|
|
5198
|
+
}
|
|
5199
|
+
},
|
|
5200
|
+
"required": [
|
|
5201
|
+
"name"
|
|
5202
|
+
],
|
|
5203
|
+
"type": "object"
|
|
5204
|
+
},
|
|
5148
5205
|
"TranslatableText": {
|
|
5149
5206
|
"anyOf": [
|
|
5150
5207
|
{
|
|
@@ -5592,13 +5649,13 @@
|
|
|
5592
5649
|
"viewpoint": {
|
|
5593
5650
|
"anyOf": [
|
|
5594
5651
|
{
|
|
5595
|
-
"$ref": "
|
|
5652
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
|
|
5596
5653
|
},
|
|
5597
5654
|
{
|
|
5598
|
-
"$ref": "#/definitions/esri.
|
|
5655
|
+
"$ref": "#/definitions/esri.Viewpoint"
|
|
5599
5656
|
},
|
|
5600
5657
|
{
|
|
5601
|
-
"$ref": "
|
|
5658
|
+
"$ref": "#/definitions/esri.rest-api.Viewpoint.Viewpoint"
|
|
5602
5659
|
},
|
|
5603
5660
|
{
|
|
5604
5661
|
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.Bookmark"
|
|
@@ -5766,26 +5823,26 @@
|
|
|
5766
5823
|
},
|
|
5767
5824
|
"charts.add-features:input": {
|
|
5768
5825
|
"anyOf": [
|
|
5769
|
-
{
|
|
5770
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5771
|
-
},
|
|
5772
5826
|
{
|
|
5773
5827
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5774
5828
|
},
|
|
5775
5829
|
{
|
|
5776
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
5830
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5777
5831
|
},
|
|
5778
5832
|
{
|
|
5779
5833
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5780
5834
|
},
|
|
5835
|
+
{
|
|
5836
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5837
|
+
},
|
|
5781
5838
|
{
|
|
5782
5839
|
"items": {
|
|
5783
5840
|
"anyOf": [
|
|
5784
5841
|
{
|
|
5785
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5842
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5786
5843
|
},
|
|
5787
5844
|
{
|
|
5788
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5845
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5789
5846
|
}
|
|
5790
5847
|
]
|
|
5791
5848
|
},
|
|
@@ -5826,26 +5883,26 @@
|
|
|
5826
5883
|
},
|
|
5827
5884
|
"charts.display:input": {
|
|
5828
5885
|
"anyOf": [
|
|
5829
|
-
{
|
|
5830
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5831
|
-
},
|
|
5832
5886
|
{
|
|
5833
5887
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5834
5888
|
},
|
|
5835
5889
|
{
|
|
5836
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
5890
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5837
5891
|
},
|
|
5838
5892
|
{
|
|
5839
5893
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5840
5894
|
},
|
|
5895
|
+
{
|
|
5896
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5897
|
+
},
|
|
5841
5898
|
{
|
|
5842
5899
|
"items": {
|
|
5843
5900
|
"anyOf": [
|
|
5844
5901
|
{
|
|
5845
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5902
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5846
5903
|
},
|
|
5847
5904
|
{
|
|
5848
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5905
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5849
5906
|
}
|
|
5850
5907
|
]
|
|
5851
5908
|
},
|
|
@@ -5901,26 +5958,26 @@
|
|
|
5901
5958
|
},
|
|
5902
5959
|
"charts.remove-features:input": {
|
|
5903
5960
|
"anyOf": [
|
|
5904
|
-
{
|
|
5905
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5906
|
-
},
|
|
5907
5961
|
{
|
|
5908
5962
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5909
5963
|
},
|
|
5910
5964
|
{
|
|
5911
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
5965
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5912
5966
|
},
|
|
5913
5967
|
{
|
|
5914
5968
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5915
5969
|
},
|
|
5970
|
+
{
|
|
5971
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5972
|
+
},
|
|
5916
5973
|
{
|
|
5917
5974
|
"items": {
|
|
5918
5975
|
"anyOf": [
|
|
5919
5976
|
{
|
|
5920
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5977
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5921
5978
|
},
|
|
5922
5979
|
{
|
|
5923
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
5980
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5924
5981
|
}
|
|
5925
5982
|
]
|
|
5926
5983
|
},
|
|
@@ -5952,60 +6009,42 @@
|
|
|
5952
6009
|
"drawing.create-graphics:input": {
|
|
5953
6010
|
"anyOf": [
|
|
5954
6011
|
{
|
|
5955
|
-
"$ref": "#/definitions/
|
|
6012
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
5956
6013
|
},
|
|
5957
6014
|
{
|
|
5958
6015
|
"$ref": "#/definitions/esri.Graphic"
|
|
5959
6016
|
},
|
|
5960
|
-
{
|
|
5961
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
5962
|
-
},
|
|
5963
|
-
{
|
|
5964
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
5965
|
-
},
|
|
5966
|
-
{
|
|
5967
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
5968
|
-
},
|
|
5969
|
-
{
|
|
5970
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
5971
|
-
},
|
|
5972
|
-
{
|
|
5973
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
5974
|
-
},
|
|
5975
|
-
{
|
|
5976
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
5977
|
-
},
|
|
5978
|
-
{
|
|
5979
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
5980
|
-
},
|
|
5981
|
-
{
|
|
5982
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5983
|
-
},
|
|
5984
6017
|
{
|
|
5985
6018
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5986
6019
|
},
|
|
5987
6020
|
{
|
|
5988
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
6021
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5989
6022
|
},
|
|
5990
6023
|
{
|
|
5991
6024
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5992
6025
|
},
|
|
5993
6026
|
{
|
|
5994
|
-
"$ref": "
|
|
6027
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5995
6028
|
},
|
|
5996
6029
|
{
|
|
5997
6030
|
"items": {
|
|
5998
6031
|
"anyOf": [
|
|
5999
6032
|
{
|
|
6000
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6033
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6001
6034
|
},
|
|
6002
6035
|
{
|
|
6003
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6036
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6004
6037
|
}
|
|
6005
6038
|
]
|
|
6006
6039
|
},
|
|
6007
6040
|
"type": "array"
|
|
6008
6041
|
},
|
|
6042
|
+
{
|
|
6043
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
6044
|
+
},
|
|
6045
|
+
{
|
|
6046
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
6047
|
+
},
|
|
6009
6048
|
{
|
|
6010
6049
|
"items": {
|
|
6011
6050
|
"anyOf": [
|
|
@@ -6019,26 +6058,44 @@
|
|
|
6019
6058
|
},
|
|
6020
6059
|
"type": "array"
|
|
6021
6060
|
},
|
|
6061
|
+
{
|
|
6062
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
6063
|
+
},
|
|
6064
|
+
{
|
|
6065
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
6066
|
+
},
|
|
6067
|
+
{
|
|
6068
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
6069
|
+
},
|
|
6070
|
+
{
|
|
6071
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
6072
|
+
},
|
|
6073
|
+
{
|
|
6074
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
6075
|
+
},
|
|
6076
|
+
{
|
|
6077
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
6078
|
+
},
|
|
6022
6079
|
{
|
|
6023
6080
|
"items": {
|
|
6024
6081
|
"anyOf": [
|
|
6025
6082
|
{
|
|
6026
|
-
"$ref": "#/definitions/esri.
|
|
6083
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
6027
6084
|
},
|
|
6028
6085
|
{
|
|
6029
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
6086
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
6030
6087
|
},
|
|
6031
6088
|
{
|
|
6032
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
6089
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
6033
6090
|
},
|
|
6034
6091
|
{
|
|
6035
6092
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
6036
6093
|
},
|
|
6037
6094
|
{
|
|
6038
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
6095
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
6039
6096
|
},
|
|
6040
6097
|
{
|
|
6041
|
-
"$ref": "#/definitions/esri.
|
|
6098
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
6042
6099
|
}
|
|
6043
6100
|
]
|
|
6044
6101
|
},
|
|
@@ -6140,49 +6197,49 @@
|
|
|
6140
6197
|
"drawing.set-default-symbol:input": {
|
|
6141
6198
|
"anyOf": [
|
|
6142
6199
|
{
|
|
6143
|
-
"$ref": "#/definitions/esri.
|
|
6200
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
6144
6201
|
},
|
|
6145
6202
|
{
|
|
6146
|
-
"$ref": "#/definitions/esri.
|
|
6203
|
+
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6147
6204
|
},
|
|
6148
6205
|
{
|
|
6149
|
-
"$ref": "#/definitions/esri.
|
|
6206
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
6150
6207
|
},
|
|
6151
6208
|
{
|
|
6152
|
-
"$ref": "#/definitions/esri.
|
|
6209
|
+
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
6153
6210
|
},
|
|
6154
6211
|
{
|
|
6155
|
-
"$ref": "#/definitions/esri.
|
|
6212
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
6156
6213
|
},
|
|
6157
6214
|
{
|
|
6158
|
-
"$ref": "#/definitions/esri.
|
|
6215
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
6159
6216
|
},
|
|
6160
6217
|
{
|
|
6161
|
-
"$ref": "#/definitions/esri.
|
|
6218
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
6162
6219
|
},
|
|
6163
6220
|
{
|
|
6164
|
-
"$ref": "#/definitions/esri.
|
|
6221
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
6165
6222
|
},
|
|
6166
6223
|
{
|
|
6167
|
-
"$ref": "#/definitions/esri.
|
|
6224
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
6168
6225
|
},
|
|
6169
6226
|
{
|
|
6170
|
-
"$ref": "#/definitions/esri.
|
|
6227
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
6171
6228
|
},
|
|
6172
6229
|
{
|
|
6173
|
-
"$ref": "#/definitions/esri.
|
|
6230
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
6174
6231
|
},
|
|
6175
6232
|
{
|
|
6176
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
6233
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
6177
6234
|
},
|
|
6178
6235
|
{
|
|
6179
|
-
"$ref": "#/definitions/esri.
|
|
6236
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
6180
6237
|
},
|
|
6181
6238
|
{
|
|
6182
6239
|
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
6183
6240
|
},
|
|
6184
6241
|
{
|
|
6185
|
-
"$ref": "#/definitions/esri.
|
|
6242
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
6186
6243
|
},
|
|
6187
6244
|
{
|
|
6188
6245
|
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
@@ -6241,26 +6298,26 @@
|
|
|
6241
6298
|
},
|
|
6242
6299
|
"edit.add-feature:input": {
|
|
6243
6300
|
"anyOf": [
|
|
6244
|
-
{
|
|
6245
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6246
|
-
},
|
|
6247
6301
|
{
|
|
6248
6302
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6249
6303
|
},
|
|
6250
6304
|
{
|
|
6251
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
6305
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6252
6306
|
},
|
|
6253
6307
|
{
|
|
6254
6308
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
6255
6309
|
},
|
|
6310
|
+
{
|
|
6311
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6312
|
+
},
|
|
6256
6313
|
{
|
|
6257
6314
|
"items": {
|
|
6258
6315
|
"anyOf": [
|
|
6259
6316
|
{
|
|
6260
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6317
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6261
6318
|
},
|
|
6262
6319
|
{
|
|
6263
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6320
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6264
6321
|
}
|
|
6265
6322
|
]
|
|
6266
6323
|
},
|
|
@@ -6321,26 +6378,26 @@
|
|
|
6321
6378
|
},
|
|
6322
6379
|
"edit.delete-features:input": {
|
|
6323
6380
|
"anyOf": [
|
|
6324
|
-
{
|
|
6325
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6326
|
-
},
|
|
6327
6381
|
{
|
|
6328
6382
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6329
6383
|
},
|
|
6330
6384
|
{
|
|
6331
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
6385
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6332
6386
|
},
|
|
6333
6387
|
{
|
|
6334
6388
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
6335
6389
|
},
|
|
6390
|
+
{
|
|
6391
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6392
|
+
},
|
|
6336
6393
|
{
|
|
6337
6394
|
"items": {
|
|
6338
6395
|
"anyOf": [
|
|
6339
6396
|
{
|
|
6340
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6397
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6341
6398
|
},
|
|
6342
6399
|
{
|
|
6343
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6400
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6344
6401
|
}
|
|
6345
6402
|
]
|
|
6346
6403
|
},
|
|
@@ -6363,10 +6420,10 @@
|
|
|
6363
6420
|
"edit.display-add-feature:input": {
|
|
6364
6421
|
"anyOf": [
|
|
6365
6422
|
{
|
|
6366
|
-
"$ref": "
|
|
6423
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
6367
6424
|
},
|
|
6368
6425
|
{
|
|
6369
|
-
"$ref": "
|
|
6426
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
6370
6427
|
}
|
|
6371
6428
|
]
|
|
6372
6429
|
},
|
|
@@ -6394,26 +6451,26 @@
|
|
|
6394
6451
|
},
|
|
6395
6452
|
"edit.update-feature:input": {
|
|
6396
6453
|
"anyOf": [
|
|
6397
|
-
{
|
|
6398
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6399
|
-
},
|
|
6400
6454
|
{
|
|
6401
6455
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6402
6456
|
},
|
|
6403
6457
|
{
|
|
6404
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
6458
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6405
6459
|
},
|
|
6406
6460
|
{
|
|
6407
6461
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
6408
6462
|
},
|
|
6463
|
+
{
|
|
6464
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6465
|
+
},
|
|
6409
6466
|
{
|
|
6410
6467
|
"items": {
|
|
6411
6468
|
"anyOf": [
|
|
6412
6469
|
{
|
|
6413
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6470
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6414
6471
|
},
|
|
6415
6472
|
{
|
|
6416
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
6473
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6417
6474
|
}
|
|
6418
6475
|
]
|
|
6419
6476
|
},
|
|
@@ -6552,6 +6609,10 @@
|
|
|
6552
6609
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
6553
6610
|
"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."
|
|
6554
6611
|
},
|
|
6612
|
+
"effect": {
|
|
6613
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
6614
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
6615
|
+
},
|
|
6555
6616
|
"filters": {
|
|
6556
6617
|
"description": "A list of filters available for this layer. Overrides filters defined on the service.",
|
|
6557
6618
|
"items": {
|
|
@@ -6838,6 +6899,10 @@
|
|
|
6838
6899
|
"description": "Indicates whether to allow a client to ignore popups defined by the service item.",
|
|
6839
6900
|
"type": "boolean"
|
|
6840
6901
|
},
|
|
6902
|
+
"effect": {
|
|
6903
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
6904
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
6905
|
+
},
|
|
6841
6906
|
"id": {
|
|
6842
6907
|
"description": "A unique identifying string for the layer.",
|
|
6843
6908
|
"type": "string"
|
|
@@ -7023,43 +7088,43 @@
|
|
|
7023
7088
|
"symbol": {
|
|
7024
7089
|
"anyOf": [
|
|
7025
7090
|
{
|
|
7026
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7091
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
7027
7092
|
},
|
|
7028
7093
|
{
|
|
7029
7094
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7030
7095
|
},
|
|
7031
7096
|
{
|
|
7032
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7097
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
7033
7098
|
},
|
|
7034
7099
|
{
|
|
7035
7100
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
7036
7101
|
},
|
|
7037
7102
|
{
|
|
7038
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7103
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
7039
7104
|
},
|
|
7040
7105
|
{
|
|
7041
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7106
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
7042
7107
|
},
|
|
7043
7108
|
{
|
|
7044
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7109
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7045
7110
|
},
|
|
7046
7111
|
{
|
|
7047
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7112
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
7048
7113
|
},
|
|
7049
7114
|
{
|
|
7050
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7115
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
7051
7116
|
},
|
|
7052
7117
|
{
|
|
7053
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7118
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
7054
7119
|
},
|
|
7055
7120
|
{
|
|
7056
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7121
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
7057
7122
|
},
|
|
7058
7123
|
{
|
|
7059
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7124
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
7060
7125
|
},
|
|
7061
7126
|
{
|
|
7062
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7127
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
7063
7128
|
}
|
|
7064
7129
|
],
|
|
7065
7130
|
"description": "An object used to display the value."
|
|
@@ -7108,43 +7173,43 @@
|
|
|
7108
7173
|
"defaultSymbol": {
|
|
7109
7174
|
"anyOf": [
|
|
7110
7175
|
{
|
|
7111
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7176
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
7112
7177
|
},
|
|
7113
7178
|
{
|
|
7114
7179
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7115
7180
|
},
|
|
7116
7181
|
{
|
|
7117
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7182
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
7118
7183
|
},
|
|
7119
7184
|
{
|
|
7120
7185
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
7121
7186
|
},
|
|
7122
7187
|
{
|
|
7123
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7188
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
7124
7189
|
},
|
|
7125
7190
|
{
|
|
7126
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7191
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
7127
7192
|
},
|
|
7128
7193
|
{
|
|
7129
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7194
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7130
7195
|
},
|
|
7131
7196
|
{
|
|
7132
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7197
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
7133
7198
|
},
|
|
7134
7199
|
{
|
|
7135
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7200
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
7136
7201
|
},
|
|
7137
7202
|
{
|
|
7138
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7203
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
7139
7204
|
},
|
|
7140
7205
|
{
|
|
7141
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7206
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
7142
7207
|
},
|
|
7143
7208
|
{
|
|
7144
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7209
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
7145
7210
|
},
|
|
7146
7211
|
{
|
|
7147
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
7212
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
7148
7213
|
}
|
|
7149
7214
|
],
|
|
7150
7215
|
"description": "Symbol used when a value cannot be classified."
|
|
@@ -7612,7 +7677,370 @@
|
|
|
7612
7677
|
],
|
|
7613
7678
|
"type": "object"
|
|
7614
7679
|
},
|
|
7615
|
-
"esri.rest-api.
|
|
7680
|
+
"esri.rest-api.Effect.BloomEffectFunction": {
|
|
7681
|
+
"additionalProperties": false,
|
|
7682
|
+
"description": "An Effect Function for the bloom effect.",
|
|
7683
|
+
"properties": {
|
|
7684
|
+
"radius": {
|
|
7685
|
+
"description": "Determines the radius of the blur. Negative values are not allowed. Leaves the pixels inside the radius untouched.",
|
|
7686
|
+
"type": "number"
|
|
7687
|
+
},
|
|
7688
|
+
"strength": {
|
|
7689
|
+
"description": "The intensity of the bloom effect. The higher the value, the brighter the glow. Negative values are not allowed.",
|
|
7690
|
+
"type": "number"
|
|
7691
|
+
},
|
|
7692
|
+
"threshold": {
|
|
7693
|
+
"description": "The minimum color luminosity for a pixel to bloom, where at 0 all pixels bloom and 1 only the pixels with 100% luminosity colors bloom.",
|
|
7694
|
+
"type": "number"
|
|
7695
|
+
},
|
|
7696
|
+
"type": {
|
|
7697
|
+
"description": "Effect type.",
|
|
7698
|
+
"enum": [
|
|
7699
|
+
"bloom"
|
|
7700
|
+
],
|
|
7701
|
+
"type": "string"
|
|
7702
|
+
}
|
|
7703
|
+
},
|
|
7704
|
+
"required": [
|
|
7705
|
+
"type"
|
|
7706
|
+
],
|
|
7707
|
+
"type": "object"
|
|
7708
|
+
},
|
|
7709
|
+
"esri.rest-api.Effect.BlurEffectFunction": {
|
|
7710
|
+
"additionalProperties": false,
|
|
7711
|
+
"description": "An Effect Function for the blur effect.",
|
|
7712
|
+
"properties": {
|
|
7713
|
+
"radius": {
|
|
7714
|
+
"description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function. Negative values are not allowed.",
|
|
7715
|
+
"type": "number"
|
|
7716
|
+
},
|
|
7717
|
+
"type": {
|
|
7718
|
+
"description": "Effect type.",
|
|
7719
|
+
"enum": [
|
|
7720
|
+
"blur"
|
|
7721
|
+
],
|
|
7722
|
+
"type": "string"
|
|
7723
|
+
}
|
|
7724
|
+
},
|
|
7725
|
+
"required": [
|
|
7726
|
+
"type"
|
|
7727
|
+
],
|
|
7728
|
+
"type": "object"
|
|
7729
|
+
},
|
|
7730
|
+
"esri.rest-api.Effect.BrightnessEffectFunction": {
|
|
7731
|
+
"additionalProperties": false,
|
|
7732
|
+
"description": "An Effect Function for the brightness effect.",
|
|
7733
|
+
"properties": {
|
|
7734
|
+
"amount": {
|
|
7735
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7736
|
+
"type": "number"
|
|
7737
|
+
},
|
|
7738
|
+
"type": {
|
|
7739
|
+
"description": "Effect type.",
|
|
7740
|
+
"enum": [
|
|
7741
|
+
"brightness"
|
|
7742
|
+
],
|
|
7743
|
+
"type": "string"
|
|
7744
|
+
}
|
|
7745
|
+
},
|
|
7746
|
+
"required": [
|
|
7747
|
+
"type"
|
|
7748
|
+
],
|
|
7749
|
+
"type": "object"
|
|
7750
|
+
},
|
|
7751
|
+
"esri.rest-api.Effect.ContrastEffectFunction": {
|
|
7752
|
+
"additionalProperties": false,
|
|
7753
|
+
"description": "An Effect Function for the contrast effect.",
|
|
7754
|
+
"properties": {
|
|
7755
|
+
"amount": {
|
|
7756
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7757
|
+
"type": "number"
|
|
7758
|
+
},
|
|
7759
|
+
"type": {
|
|
7760
|
+
"description": "Effect type.",
|
|
7761
|
+
"enum": [
|
|
7762
|
+
"contrast"
|
|
7763
|
+
],
|
|
7764
|
+
"type": "string"
|
|
7765
|
+
}
|
|
7766
|
+
},
|
|
7767
|
+
"required": [
|
|
7768
|
+
"type"
|
|
7769
|
+
],
|
|
7770
|
+
"type": "object"
|
|
7771
|
+
},
|
|
7772
|
+
"esri.rest-api.Effect.DropShadowEffectFunction": {
|
|
7773
|
+
"additionalProperties": false,
|
|
7774
|
+
"description": "An Effect Function for the drop-shadow effect.",
|
|
7775
|
+
"properties": {
|
|
7776
|
+
"blurRadius": {
|
|
7777
|
+
"description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function.",
|
|
7778
|
+
"type": "number"
|
|
7779
|
+
},
|
|
7780
|
+
"color": {
|
|
7781
|
+
"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.",
|
|
7782
|
+
"items": {
|
|
7783
|
+
"type": "number"
|
|
7784
|
+
},
|
|
7785
|
+
"type": "array"
|
|
7786
|
+
},
|
|
7787
|
+
"type": {
|
|
7788
|
+
"description": "Effect type.",
|
|
7789
|
+
"enum": [
|
|
7790
|
+
"drop-shadow"
|
|
7791
|
+
],
|
|
7792
|
+
"type": "string"
|
|
7793
|
+
},
|
|
7794
|
+
"xoffset": {
|
|
7795
|
+
"description": "The distance of the shadow on the x-axis in points.",
|
|
7796
|
+
"type": "number"
|
|
7797
|
+
},
|
|
7798
|
+
"yoffset": {
|
|
7799
|
+
"description": "The distance of the shadow on the y-axis in points.",
|
|
7800
|
+
"type": "number"
|
|
7801
|
+
}
|
|
7802
|
+
},
|
|
7803
|
+
"required": [
|
|
7804
|
+
"type"
|
|
7805
|
+
],
|
|
7806
|
+
"type": "object"
|
|
7807
|
+
},
|
|
7808
|
+
"esri.rest-api.Effect.Effect": {
|
|
7809
|
+
"anyOf": [
|
|
7810
|
+
{
|
|
7811
|
+
"items": {
|
|
7812
|
+
"$ref": "#/definitions/esri.rest-api.Effect.ScaleDependentEffect"
|
|
7813
|
+
},
|
|
7814
|
+
"type": "array"
|
|
7815
|
+
},
|
|
7816
|
+
{
|
|
7817
|
+
"items": {
|
|
7818
|
+
"anyOf": [
|
|
7819
|
+
{
|
|
7820
|
+
"$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
|
|
7824
|
+
},
|
|
7825
|
+
{
|
|
7826
|
+
"$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
|
|
7827
|
+
},
|
|
7828
|
+
{
|
|
7829
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
|
|
7830
|
+
},
|
|
7831
|
+
{
|
|
7832
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
|
|
7833
|
+
},
|
|
7834
|
+
{
|
|
7835
|
+
"$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
|
|
7836
|
+
},
|
|
7837
|
+
{
|
|
7838
|
+
"$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
"$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
|
|
7842
|
+
},
|
|
7843
|
+
{
|
|
7844
|
+
"$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
|
|
7845
|
+
},
|
|
7846
|
+
{
|
|
7847
|
+
"$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
|
|
7848
|
+
},
|
|
7849
|
+
{
|
|
7850
|
+
"$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
|
|
7851
|
+
}
|
|
7852
|
+
],
|
|
7853
|
+
"description": "Effect functions that can be combined to build a layer effect."
|
|
7854
|
+
},
|
|
7855
|
+
"type": "array"
|
|
7856
|
+
}
|
|
7857
|
+
],
|
|
7858
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
7859
|
+
},
|
|
7860
|
+
"esri.rest-api.Effect.GrayscaleEffectFunction": {
|
|
7861
|
+
"additionalProperties": false,
|
|
7862
|
+
"description": "An Effect Function for the grayscale effect.",
|
|
7863
|
+
"properties": {
|
|
7864
|
+
"amount": {
|
|
7865
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7866
|
+
"type": "number"
|
|
7867
|
+
},
|
|
7868
|
+
"type": {
|
|
7869
|
+
"description": "Effect type.",
|
|
7870
|
+
"enum": [
|
|
7871
|
+
"grayscale"
|
|
7872
|
+
],
|
|
7873
|
+
"type": "string"
|
|
7874
|
+
}
|
|
7875
|
+
},
|
|
7876
|
+
"required": [
|
|
7877
|
+
"type"
|
|
7878
|
+
],
|
|
7879
|
+
"type": "object"
|
|
7880
|
+
},
|
|
7881
|
+
"esri.rest-api.Effect.HueRotateEffectFunction": {
|
|
7882
|
+
"additionalProperties": false,
|
|
7883
|
+
"description": "An Effect Function for the hue-rotate effect.",
|
|
7884
|
+
"properties": {
|
|
7885
|
+
"angle": {
|
|
7886
|
+
"description": "The relative change in hue as an angle in degree. A value of 0 leaves the input unchanged. A positive hue rotation increases the hue value, while a negative one decreases the hue value.",
|
|
7887
|
+
"type": "number"
|
|
7888
|
+
},
|
|
7889
|
+
"type": {
|
|
7890
|
+
"description": "Effect type.",
|
|
7891
|
+
"enum": [
|
|
7892
|
+
"hue-rotate"
|
|
7893
|
+
],
|
|
7894
|
+
"type": "string"
|
|
7895
|
+
}
|
|
7896
|
+
},
|
|
7897
|
+
"required": [
|
|
7898
|
+
"type"
|
|
7899
|
+
],
|
|
7900
|
+
"type": "object"
|
|
7901
|
+
},
|
|
7902
|
+
"esri.rest-api.Effect.InvertEffectFunction": {
|
|
7903
|
+
"additionalProperties": false,
|
|
7904
|
+
"description": "An Effect Function for the invert effect.",
|
|
7905
|
+
"properties": {
|
|
7906
|
+
"amount": {
|
|
7907
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7908
|
+
"type": "number"
|
|
7909
|
+
},
|
|
7910
|
+
"type": {
|
|
7911
|
+
"description": "Effect type.",
|
|
7912
|
+
"enum": [
|
|
7913
|
+
"invert"
|
|
7914
|
+
],
|
|
7915
|
+
"type": "string"
|
|
7916
|
+
}
|
|
7917
|
+
},
|
|
7918
|
+
"required": [
|
|
7919
|
+
"type"
|
|
7920
|
+
],
|
|
7921
|
+
"type": "object"
|
|
7922
|
+
},
|
|
7923
|
+
"esri.rest-api.Effect.OpacityEffectFunction": {
|
|
7924
|
+
"additionalProperties": false,
|
|
7925
|
+
"description": "An Effect Function for the opacity effect.",
|
|
7926
|
+
"properties": {
|
|
7927
|
+
"amount": {
|
|
7928
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7929
|
+
"type": "number"
|
|
7930
|
+
},
|
|
7931
|
+
"type": {
|
|
7932
|
+
"description": "Effect type.",
|
|
7933
|
+
"enum": [
|
|
7934
|
+
"opacity"
|
|
7935
|
+
],
|
|
7936
|
+
"type": "string"
|
|
7937
|
+
}
|
|
7938
|
+
},
|
|
7939
|
+
"required": [
|
|
7940
|
+
"type"
|
|
7941
|
+
],
|
|
7942
|
+
"type": "object"
|
|
7943
|
+
},
|
|
7944
|
+
"esri.rest-api.Effect.SaturateEffectFunction": {
|
|
7945
|
+
"additionalProperties": false,
|
|
7946
|
+
"description": "An Effect Function for the saturate effect.",
|
|
7947
|
+
"properties": {
|
|
7948
|
+
"amount": {
|
|
7949
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
7950
|
+
"type": "number"
|
|
7951
|
+
},
|
|
7952
|
+
"type": {
|
|
7953
|
+
"description": "Effect type.",
|
|
7954
|
+
"enum": [
|
|
7955
|
+
"saturate"
|
|
7956
|
+
],
|
|
7957
|
+
"type": "string"
|
|
7958
|
+
}
|
|
7959
|
+
},
|
|
7960
|
+
"required": [
|
|
7961
|
+
"type"
|
|
7962
|
+
],
|
|
7963
|
+
"type": "object"
|
|
7964
|
+
},
|
|
7965
|
+
"esri.rest-api.Effect.ScaleDependentEffect": {
|
|
7966
|
+
"additionalProperties": false,
|
|
7967
|
+
"description": "An object describing the effect to apply at a scale stop.",
|
|
7968
|
+
"properties": {
|
|
7969
|
+
"scale": {
|
|
7970
|
+
"description": "The scale of the view for the effect to take place.",
|
|
7971
|
+
"type": "number"
|
|
7972
|
+
},
|
|
7973
|
+
"value": {
|
|
7974
|
+
"description": "The effect to be applied at the corresponding scale.",
|
|
7975
|
+
"items": {
|
|
7976
|
+
"anyOf": [
|
|
7977
|
+
{
|
|
7978
|
+
"$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
|
|
7979
|
+
},
|
|
7980
|
+
{
|
|
7981
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
|
|
7982
|
+
},
|
|
7983
|
+
{
|
|
7984
|
+
"$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
|
|
7988
|
+
},
|
|
7989
|
+
{
|
|
7990
|
+
"$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
|
|
7991
|
+
},
|
|
7992
|
+
{
|
|
7993
|
+
"$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
|
|
7994
|
+
},
|
|
7995
|
+
{
|
|
7996
|
+
"$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
|
|
8000
|
+
},
|
|
8001
|
+
{
|
|
8002
|
+
"$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
|
|
8003
|
+
},
|
|
8004
|
+
{
|
|
8005
|
+
"$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
|
|
8006
|
+
},
|
|
8007
|
+
{
|
|
8008
|
+
"$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
|
|
8009
|
+
}
|
|
8010
|
+
],
|
|
8011
|
+
"description": "Effect functions that can be combined to build a layer effect."
|
|
8012
|
+
},
|
|
8013
|
+
"type": "array"
|
|
8014
|
+
}
|
|
8015
|
+
},
|
|
8016
|
+
"required": [
|
|
8017
|
+
"scale",
|
|
8018
|
+
"value"
|
|
8019
|
+
],
|
|
8020
|
+
"type": "object"
|
|
8021
|
+
},
|
|
8022
|
+
"esri.rest-api.Effect.SepiaEffectFunction": {
|
|
8023
|
+
"additionalProperties": false,
|
|
8024
|
+
"description": "An Effect Function for the sepia effect.",
|
|
8025
|
+
"properties": {
|
|
8026
|
+
"amount": {
|
|
8027
|
+
"description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
|
|
8028
|
+
"type": "number"
|
|
8029
|
+
},
|
|
8030
|
+
"type": {
|
|
8031
|
+
"description": "Effect type.",
|
|
8032
|
+
"enum": [
|
|
8033
|
+
"sepia"
|
|
8034
|
+
],
|
|
8035
|
+
"type": "string"
|
|
8036
|
+
}
|
|
8037
|
+
},
|
|
8038
|
+
"required": [
|
|
8039
|
+
"type"
|
|
8040
|
+
],
|
|
8041
|
+
"type": "object"
|
|
8042
|
+
},
|
|
8043
|
+
"esri.rest-api.ElevationInfo.ElevationInfo": {
|
|
7616
8044
|
"additionalProperties": false,
|
|
7617
8045
|
"description": "Specifies how graphics are placed on the vertical axis (z). This property may only be used in a SceneView.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/elevationInfo/}.",
|
|
7618
8046
|
"properties": {
|
|
@@ -7671,6 +8099,10 @@
|
|
|
7671
8099
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
7672
8100
|
"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."
|
|
7673
8101
|
},
|
|
8102
|
+
"effect": {
|
|
8103
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
8104
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
8105
|
+
},
|
|
7674
8106
|
"id": {
|
|
7675
8107
|
"description": "A unique identifying string for the layer.",
|
|
7676
8108
|
"type": "string"
|
|
@@ -7820,43 +8252,43 @@
|
|
|
7820
8252
|
"symbol": {
|
|
7821
8253
|
"anyOf": [
|
|
7822
8254
|
{
|
|
7823
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8255
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
7824
8256
|
},
|
|
7825
8257
|
{
|
|
7826
8258
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7827
8259
|
},
|
|
7828
8260
|
{
|
|
7829
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8261
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
7830
8262
|
},
|
|
7831
8263
|
{
|
|
7832
8264
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
7833
8265
|
},
|
|
7834
8266
|
{
|
|
7835
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8267
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
7836
8268
|
},
|
|
7837
8269
|
{
|
|
7838
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8270
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
7839
8271
|
},
|
|
7840
8272
|
{
|
|
7841
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8273
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7842
8274
|
},
|
|
7843
8275
|
{
|
|
7844
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8276
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
7845
8277
|
},
|
|
7846
8278
|
{
|
|
7847
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8279
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
7848
8280
|
},
|
|
7849
8281
|
{
|
|
7850
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8282
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
7851
8283
|
},
|
|
7852
8284
|
{
|
|
7853
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8285
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
7854
8286
|
},
|
|
7855
8287
|
{
|
|
7856
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8288
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
7857
8289
|
},
|
|
7858
8290
|
{
|
|
7859
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
8291
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
7860
8292
|
}
|
|
7861
8293
|
],
|
|
7862
8294
|
"description": "Symbol used for drawing the feature."
|
|
@@ -7917,6 +8349,10 @@
|
|
|
7917
8349
|
"description": "Indicates whether to allow a client to ignore popups defined by the service item.",
|
|
7918
8350
|
"type": "boolean"
|
|
7919
8351
|
},
|
|
8352
|
+
"effect": {
|
|
8353
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
8354
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
8355
|
+
},
|
|
7920
8356
|
"featureCollection": {
|
|
7921
8357
|
"$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
|
|
7922
8358
|
"description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
|
|
@@ -8786,6 +9222,10 @@
|
|
|
8786
9222
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
8787
9223
|
"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."
|
|
8788
9224
|
},
|
|
9225
|
+
"effect": {
|
|
9226
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
9227
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9228
|
+
},
|
|
8789
9229
|
"id": {
|
|
8790
9230
|
"description": "A unique identifying string for the layer.",
|
|
8791
9231
|
"type": "string"
|
|
@@ -8868,19 +9308,19 @@
|
|
|
8868
9308
|
"esri.rest-api.Geometry.Geometry": {
|
|
8869
9309
|
"anyOf": [
|
|
8870
9310
|
{
|
|
8871
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
9311
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
8872
9312
|
},
|
|
8873
9313
|
{
|
|
8874
9314
|
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
8875
9315
|
},
|
|
8876
9316
|
{
|
|
8877
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
9317
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
8878
9318
|
},
|
|
8879
9319
|
{
|
|
8880
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
9320
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
8881
9321
|
},
|
|
8882
9322
|
{
|
|
8883
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
9323
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
8884
9324
|
}
|
|
8885
9325
|
],
|
|
8886
9326
|
"description": "A geometry as defined in the ArcGIS REST and web map specifications. See{@linkhttp://resources.arcgis.com/en/help/rest/apiref/geometry.html}.{@linkhttps://developers.arcgis.com/web-map-specification/objects/geometry/}{@linkhttps://developers.arcgis.com/web-map-specification/objects/geometryType/}."
|
|
@@ -8893,6 +9333,10 @@
|
|
|
8893
9333
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
8894
9334
|
"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."
|
|
8895
9335
|
},
|
|
9336
|
+
"effect": {
|
|
9337
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
9338
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9339
|
+
},
|
|
8896
9340
|
"id": {
|
|
8897
9341
|
"description": "A unique identifying string for the layer.",
|
|
8898
9342
|
"type": "string"
|
|
@@ -9137,6 +9581,10 @@
|
|
|
9137
9581
|
"$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
|
|
9138
9582
|
"description": "Stores interactive filters."
|
|
9139
9583
|
},
|
|
9584
|
+
"effect": {
|
|
9585
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
9586
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9587
|
+
},
|
|
9140
9588
|
"format": {
|
|
9141
9589
|
"description": "The output image type.",
|
|
9142
9590
|
"enum": [
|
|
@@ -9287,6 +9735,10 @@
|
|
|
9287
9735
|
"description": "Boolean property indicating whether to ignore popups defined by the service item.",
|
|
9288
9736
|
"type": "boolean"
|
|
9289
9737
|
},
|
|
9738
|
+
"effect": {
|
|
9739
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
9740
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9741
|
+
},
|
|
9290
9742
|
"id": {
|
|
9291
9743
|
"description": "A unique identifying string for the layer.",
|
|
9292
9744
|
"type": "string"
|
|
@@ -9401,6 +9853,10 @@
|
|
|
9401
9853
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
9402
9854
|
"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."
|
|
9403
9855
|
},
|
|
9856
|
+
"effect": {
|
|
9857
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
9858
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
9859
|
+
},
|
|
9404
9860
|
"id": {
|
|
9405
9861
|
"description": "A unique identifying string for the layer.",
|
|
9406
9862
|
"type": "string"
|
|
@@ -9772,6 +10228,10 @@
|
|
|
9772
10228
|
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
9773
10229
|
"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."
|
|
9774
10230
|
},
|
|
10231
|
+
"effect": {
|
|
10232
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
10233
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
10234
|
+
},
|
|
9775
10235
|
"id": {
|
|
9776
10236
|
"description": "A unique identifying string for the layer.",
|
|
9777
10237
|
"type": "string"
|
|
@@ -9945,10 +10405,10 @@
|
|
|
9945
10405
|
"symbol": {
|
|
9946
10406
|
"anyOf": [
|
|
9947
10407
|
{
|
|
9948
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
10408
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
9949
10409
|
},
|
|
9950
10410
|
{
|
|
9951
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
10411
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
9952
10412
|
}
|
|
9953
10413
|
],
|
|
9954
10414
|
"description": "The text symbol used to label."
|
|
@@ -10503,6 +10963,10 @@
|
|
|
10503
10963
|
"customParameters": {
|
|
10504
10964
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
10505
10965
|
},
|
|
10966
|
+
"effect": {
|
|
10967
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
10968
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
10969
|
+
},
|
|
10506
10970
|
"id": {
|
|
10507
10971
|
"description": "A unique identifying string for the layer.",
|
|
10508
10972
|
"type": "string"
|
|
@@ -10834,9 +11298,6 @@
|
|
|
10834
11298
|
{
|
|
10835
11299
|
"$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
|
|
10836
11300
|
},
|
|
10837
|
-
{
|
|
10838
|
-
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
10839
|
-
},
|
|
10840
11301
|
{
|
|
10841
11302
|
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
|
|
10842
11303
|
},
|
|
@@ -10846,6 +11307,9 @@
|
|
|
10846
11307
|
{
|
|
10847
11308
|
"$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
|
|
10848
11309
|
},
|
|
11310
|
+
{
|
|
11311
|
+
"$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
|
|
11312
|
+
},
|
|
10849
11313
|
{
|
|
10850
11314
|
"$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
|
|
10851
11315
|
},
|
|
@@ -10864,6 +11328,12 @@
|
|
|
10864
11328
|
{
|
|
10865
11329
|
"$ref": "#/definitions/esri.rest-api.SceneLayer.SceneLayer"
|
|
10866
11330
|
},
|
|
11331
|
+
{
|
|
11332
|
+
"$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
|
|
11333
|
+
},
|
|
11334
|
+
{
|
|
11335
|
+
"$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
|
|
11336
|
+
},
|
|
10867
11337
|
{
|
|
10868
11338
|
"$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
|
|
10869
11339
|
},
|
|
@@ -10873,14 +11343,11 @@
|
|
|
10873
11343
|
{
|
|
10874
11344
|
"$ref": "#/definitions/esri.rest-api.VectorTileLayer.VectorTileLayer"
|
|
10875
11345
|
},
|
|
10876
|
-
{
|
|
10877
|
-
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
10878
|
-
},
|
|
10879
11346
|
{
|
|
10880
11347
|
"$ref": "#/definitions/esri.rest-api.WebTileLayer.WebTileLayer"
|
|
10881
11348
|
},
|
|
10882
11349
|
{
|
|
10883
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
11350
|
+
"$ref": "#/definitions/esri.rest-api.WMSLayer.WMSLayer"
|
|
10884
11351
|
}
|
|
10885
11352
|
],
|
|
10886
11353
|
"description": "An operational layer in a web map/scene."
|
|
@@ -11214,6 +11681,10 @@
|
|
|
11214
11681
|
"description": "Indicates whether to allow a client to ignore popups defined by the service item.",
|
|
11215
11682
|
"type": "boolean"
|
|
11216
11683
|
},
|
|
11684
|
+
"effect": {
|
|
11685
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
11686
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
11687
|
+
},
|
|
11217
11688
|
"id": {
|
|
11218
11689
|
"description": "A unique identifying string for the layer.",
|
|
11219
11690
|
"type": "string"
|
|
@@ -12360,6 +12831,10 @@
|
|
|
12360
12831
|
"description": "Indicates whether to allow a client to ignore popups defined by the service item.",
|
|
12361
12832
|
"type": "boolean"
|
|
12362
12833
|
},
|
|
12834
|
+
"effect": {
|
|
12835
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
12836
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
12837
|
+
},
|
|
12363
12838
|
"id": {
|
|
12364
12839
|
"description": "A unique identifying string for the layer.",
|
|
12365
12840
|
"type": "string"
|
|
@@ -12616,43 +13091,43 @@
|
|
|
12616
13091
|
"symbol": {
|
|
12617
13092
|
"anyOf": [
|
|
12618
13093
|
{
|
|
12619
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13094
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
12620
13095
|
},
|
|
12621
13096
|
{
|
|
12622
13097
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12623
13098
|
},
|
|
12624
13099
|
{
|
|
12625
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13100
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
12626
13101
|
},
|
|
12627
13102
|
{
|
|
12628
13103
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
12629
13104
|
},
|
|
12630
13105
|
{
|
|
12631
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13106
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
12632
13107
|
},
|
|
12633
13108
|
{
|
|
12634
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13109
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
12635
13110
|
},
|
|
12636
13111
|
{
|
|
12637
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13112
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12638
13113
|
},
|
|
12639
13114
|
{
|
|
12640
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13115
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
12641
13116
|
},
|
|
12642
13117
|
{
|
|
12643
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13118
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
12644
13119
|
},
|
|
12645
13120
|
{
|
|
12646
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13121
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
12647
13122
|
},
|
|
12648
13123
|
{
|
|
12649
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13124
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
12650
13125
|
},
|
|
12651
13126
|
{
|
|
12652
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13127
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
12653
13128
|
},
|
|
12654
13129
|
{
|
|
12655
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13130
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
12656
13131
|
}
|
|
12657
13132
|
],
|
|
12658
13133
|
"description": "An object that represents how all features will be drawn."
|
|
@@ -12729,6 +13204,10 @@
|
|
|
12729
13204
|
"description": "Indicates whether to allow a client to ignore popups defined by the service item.",
|
|
12730
13205
|
"type": "boolean"
|
|
12731
13206
|
},
|
|
13207
|
+
"effect": {
|
|
13208
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
13209
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13210
|
+
},
|
|
12732
13211
|
"featureCollection": {
|
|
12733
13212
|
"$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
|
|
12734
13213
|
"description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
|
|
@@ -12867,6 +13346,99 @@
|
|
|
12867
13346
|
],
|
|
12868
13347
|
"type": "object"
|
|
12869
13348
|
},
|
|
13349
|
+
"esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer": {
|
|
13350
|
+
"additionalProperties": false,
|
|
13351
|
+
"description": "SubtypeGroupLayer 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 SubtypeGroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/subtypeGroupLayer/}.",
|
|
13352
|
+
"properties": {
|
|
13353
|
+
"blendMode": {
|
|
13354
|
+
"$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
|
|
13355
|
+
"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."
|
|
13356
|
+
},
|
|
13357
|
+
"customParameters": {
|
|
13358
|
+
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
13359
|
+
},
|
|
13360
|
+
"effect": {
|
|
13361
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
13362
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13363
|
+
},
|
|
13364
|
+
"id": {
|
|
13365
|
+
"description": "A unique identifying string for the layer.",
|
|
13366
|
+
"type": "string"
|
|
13367
|
+
},
|
|
13368
|
+
"layerDefinition": {
|
|
13369
|
+
"$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
|
|
13370
|
+
"description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
|
|
13371
|
+
},
|
|
13372
|
+
"layerType": {
|
|
13373
|
+
"description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
|
|
13374
|
+
"enum": [
|
|
13375
|
+
"ArcGISSubtypeGroupLayer"
|
|
13376
|
+
],
|
|
13377
|
+
"type": "string"
|
|
13378
|
+
},
|
|
13379
|
+
"layers": {
|
|
13380
|
+
"description": "An array of feature layers, each describing the properties for a subtype in the feature service layer.",
|
|
13381
|
+
"items": {
|
|
13382
|
+
"$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
|
|
13383
|
+
},
|
|
13384
|
+
"type": "array"
|
|
13385
|
+
},
|
|
13386
|
+
"listMode": {
|
|
13387
|
+
"$ref": "esri.ListMode",
|
|
13388
|
+
"description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linkListMode}."
|
|
13389
|
+
},
|
|
13390
|
+
"maxScale": {
|
|
13391
|
+
"description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
|
|
13392
|
+
"type": "number"
|
|
13393
|
+
},
|
|
13394
|
+
"minScale": {
|
|
13395
|
+
"description": "A number representing the minimum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400.",
|
|
13396
|
+
"type": "number"
|
|
13397
|
+
},
|
|
13398
|
+
"opacity": {
|
|
13399
|
+
"description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
|
|
13400
|
+
"type": "number"
|
|
13401
|
+
},
|
|
13402
|
+
"refreshInterval": {
|
|
13403
|
+
"description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
|
|
13404
|
+
"type": "number"
|
|
13405
|
+
},
|
|
13406
|
+
"showLegend": {
|
|
13407
|
+
"description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
|
|
13408
|
+
"type": "boolean"
|
|
13409
|
+
},
|
|
13410
|
+
"title": {
|
|
13411
|
+
"description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
|
|
13412
|
+
"type": "string"
|
|
13413
|
+
},
|
|
13414
|
+
"type": {
|
|
13415
|
+
"description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkOperationalLayerType}and{@linkBaseMapLayerType}.",
|
|
13416
|
+
"enum": [
|
|
13417
|
+
"BingMapsAerial",
|
|
13418
|
+
"BingMapsHybrid",
|
|
13419
|
+
"BingMapsRoad",
|
|
13420
|
+
"CSV",
|
|
13421
|
+
"KML",
|
|
13422
|
+
"OpenStreetMap",
|
|
13423
|
+
"WMS",
|
|
13424
|
+
"WebTiledLayer"
|
|
13425
|
+
],
|
|
13426
|
+
"type": "string"
|
|
13427
|
+
},
|
|
13428
|
+
"url": {
|
|
13429
|
+
"description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, then the url property is omitted.",
|
|
13430
|
+
"type": "string"
|
|
13431
|
+
},
|
|
13432
|
+
"visibility": {
|
|
13433
|
+
"description": "Determines whether the layer is initially visible in the web map.",
|
|
13434
|
+
"type": "boolean"
|
|
13435
|
+
}
|
|
13436
|
+
},
|
|
13437
|
+
"required": [
|
|
13438
|
+
"layerType"
|
|
13439
|
+
],
|
|
13440
|
+
"type": "object"
|
|
13441
|
+
},
|
|
12870
13442
|
"esri.rest-api.Symbol.Color": {
|
|
12871
13443
|
"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/}.",
|
|
12872
13444
|
"items": {
|
|
@@ -12933,25 +13505,25 @@
|
|
|
12933
13505
|
"esri.rest-api.Symbol.Symbol": {
|
|
12934
13506
|
"anyOf": [
|
|
12935
13507
|
{
|
|
12936
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13508
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
12937
13509
|
},
|
|
12938
13510
|
{
|
|
12939
13511
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12940
13512
|
},
|
|
12941
13513
|
{
|
|
12942
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13514
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
12943
13515
|
},
|
|
12944
13516
|
{
|
|
12945
13517
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
12946
13518
|
},
|
|
12947
13519
|
{
|
|
12948
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13520
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
12949
13521
|
},
|
|
12950
13522
|
{
|
|
12951
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13523
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
12952
13524
|
},
|
|
12953
13525
|
{
|
|
12954
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13526
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12955
13527
|
}
|
|
12956
13528
|
],
|
|
12957
13529
|
"description": "A symbol representing a feature on the map. Part of the Esri ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/symbol.html).{@linkhttps://developers.arcgis.com/web-map-specification/objects/symbol/}."
|
|
@@ -13062,19 +13634,19 @@
|
|
|
13062
13634
|
"esri.rest-api.Symbol3D.Symbol3D": {
|
|
13063
13635
|
"anyOf": [
|
|
13064
13636
|
{
|
|
13065
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13637
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
13066
13638
|
},
|
|
13067
13639
|
{
|
|
13068
13640
|
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
13069
13641
|
},
|
|
13070
13642
|
{
|
|
13071
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13643
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
13072
13644
|
},
|
|
13073
13645
|
{
|
|
13074
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13646
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
13075
13647
|
},
|
|
13076
13648
|
{
|
|
13077
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
13649
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
13078
13650
|
},
|
|
13079
13651
|
{
|
|
13080
13652
|
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
@@ -13369,6 +13941,10 @@
|
|
|
13369
13941
|
"customParameters": {
|
|
13370
13942
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
13371
13943
|
},
|
|
13944
|
+
"effect": {
|
|
13945
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
13946
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
13947
|
+
},
|
|
13372
13948
|
"id": {
|
|
13373
13949
|
"description": "A unique identifying string for the layer.",
|
|
13374
13950
|
"type": "string"
|
|
@@ -13463,6 +14039,10 @@
|
|
|
13463
14039
|
},
|
|
13464
14040
|
"type": "array"
|
|
13465
14041
|
},
|
|
14042
|
+
"effect": {
|
|
14043
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
14044
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
14045
|
+
},
|
|
13466
14046
|
"exclusionAreas": {
|
|
13467
14047
|
"$ref": "__type",
|
|
13468
14048
|
"description": "Exclusion areas define extent areas where no data will be fetched for a layer. NOTE: Applicable if used as a baseMapLayer. An array of exclusionArea objects defining the layer exclusions.{@linkhttps://developers.arcgis.com/web-map-specification/objects/exclusionArea/}."
|
|
@@ -13659,43 +14239,43 @@
|
|
|
13659
14239
|
"symbol": {
|
|
13660
14240
|
"anyOf": [
|
|
13661
14241
|
{
|
|
13662
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14242
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
13663
14243
|
},
|
|
13664
14244
|
{
|
|
13665
14245
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13666
14246
|
},
|
|
13667
14247
|
{
|
|
13668
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14248
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
13669
14249
|
},
|
|
13670
14250
|
{
|
|
13671
14251
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
13672
14252
|
},
|
|
13673
14253
|
{
|
|
13674
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14254
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
13675
14255
|
},
|
|
13676
14256
|
{
|
|
13677
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14257
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
13678
14258
|
},
|
|
13679
14259
|
{
|
|
13680
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14260
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13681
14261
|
},
|
|
13682
14262
|
{
|
|
13683
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14263
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
13684
14264
|
},
|
|
13685
14265
|
{
|
|
13686
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14266
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
13687
14267
|
},
|
|
13688
14268
|
{
|
|
13689
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14269
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
13690
14270
|
},
|
|
13691
14271
|
{
|
|
13692
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14272
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
13693
14273
|
},
|
|
13694
14274
|
{
|
|
13695
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14275
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
13696
14276
|
},
|
|
13697
14277
|
{
|
|
13698
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14278
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
13699
14279
|
}
|
|
13700
14280
|
],
|
|
13701
14281
|
"description": "An object used to display the value."
|
|
@@ -13730,43 +14310,43 @@
|
|
|
13730
14310
|
"defaultSymbol": {
|
|
13731
14311
|
"anyOf": [
|
|
13732
14312
|
{
|
|
13733
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14313
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
13734
14314
|
},
|
|
13735
14315
|
{
|
|
13736
14316
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13737
14317
|
},
|
|
13738
14318
|
{
|
|
13739
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14319
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
13740
14320
|
},
|
|
13741
14321
|
{
|
|
13742
14322
|
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
13743
14323
|
},
|
|
13744
14324
|
{
|
|
13745
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14325
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
13746
14326
|
},
|
|
13747
14327
|
{
|
|
13748
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14328
|
+
"$ref": "#/definitions/esri.rest-api.TextSymbol.TextSymbol"
|
|
13749
14329
|
},
|
|
13750
14330
|
{
|
|
13751
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14331
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13752
14332
|
},
|
|
13753
14333
|
{
|
|
13754
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14334
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
13755
14335
|
},
|
|
13756
14336
|
{
|
|
13757
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14337
|
+
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
13758
14338
|
},
|
|
13759
14339
|
{
|
|
13760
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14340
|
+
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
13761
14341
|
},
|
|
13762
14342
|
{
|
|
13763
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14343
|
+
"$ref": "#/definitions/esri.rest-api.LabelSymbol3D.LabelSymbol3D"
|
|
13764
14344
|
},
|
|
13765
14345
|
{
|
|
13766
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14346
|
+
"$ref": "#/definitions/esri.rest-api.MeshSymbol3D.MeshSymbol3D"
|
|
13767
14347
|
},
|
|
13768
14348
|
{
|
|
13769
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
14349
|
+
"$ref": "#/definitions/esri.rest-api.StyleSymbolReference.StyleSymbolReference"
|
|
13770
14350
|
}
|
|
13771
14351
|
],
|
|
13772
14352
|
"description": "Symbol used when a value cannot be matched."
|
|
@@ -13961,6 +14541,10 @@
|
|
|
13961
14541
|
"customParameters": {
|
|
13962
14542
|
"description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
|
|
13963
14543
|
},
|
|
14544
|
+
"effect": {
|
|
14545
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
14546
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
14547
|
+
},
|
|
13964
14548
|
"id": {
|
|
13965
14549
|
"description": "A unique identifying string for the layer.",
|
|
13966
14550
|
"type": "string"
|
|
@@ -14456,6 +15040,10 @@
|
|
|
14456
15040
|
"customParameters": {
|
|
14457
15041
|
"description": "A sequence of custom parameters to all WMS requests. These parameters are applied to GetCapabilities, GetMap, and GetFeatureInfo requests. If used with the customLayerParameters property, customParameters will not take precedence."
|
|
14458
15042
|
},
|
|
15043
|
+
"effect": {
|
|
15044
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
15045
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
15046
|
+
},
|
|
14459
15047
|
"extent": {
|
|
14460
15048
|
"description": "The rectangular map extent that should be requested from the service.",
|
|
14461
15049
|
"items": {
|
|
@@ -14658,6 +15246,10 @@
|
|
|
14658
15246
|
"description": "Attribution to the Web Tile Layer provider. It is displayed in the attribution on the web map. Input required by the user when the layer is added to the web map.",
|
|
14659
15247
|
"type": "string"
|
|
14660
15248
|
},
|
|
15249
|
+
"effect": {
|
|
15250
|
+
"$ref": "#/definitions/esri.rest-api.Effect.Effect",
|
|
15251
|
+
"description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
|
|
15252
|
+
},
|
|
14661
15253
|
"fullExtent": {
|
|
14662
15254
|
"$ref": "#/definitions/esri.rest-api.Extent.Extent",
|
|
14663
15255
|
"description": "An extent object representing the full extent envelope for the layer."
|
|
@@ -14845,15 +15437,15 @@
|
|
|
14845
15437
|
{
|
|
14846
15438
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
14847
15439
|
},
|
|
14848
|
-
{
|
|
14849
|
-
"$ref": "#/definitions/HasMaps"
|
|
14850
|
-
},
|
|
14851
15440
|
{
|
|
14852
15441
|
"items": {
|
|
14853
15442
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
14854
15443
|
},
|
|
14855
15444
|
"type": "array"
|
|
14856
15445
|
},
|
|
15446
|
+
{
|
|
15447
|
+
"$ref": "#/definitions/HasMaps"
|
|
15448
|
+
},
|
|
14857
15449
|
{
|
|
14858
15450
|
"type": "null"
|
|
14859
15451
|
}
|
|
@@ -14931,6 +15523,15 @@
|
|
|
14931
15523
|
"geometry.buffer:output": {
|
|
14932
15524
|
"$ref": "#/definitions/BufferResult"
|
|
14933
15525
|
},
|
|
15526
|
+
"geometry.display-settings": {
|
|
15527
|
+
"description": "Display the geometry settings dialog. This allows you to configure buffer distance and buffer units.",
|
|
15528
|
+
"enum": [
|
|
15529
|
+
"geometry.display-settings"
|
|
15530
|
+
]
|
|
15531
|
+
},
|
|
15532
|
+
"geometry.display-settings:input": {
|
|
15533
|
+
"$ref": "#/definitions/HasUITarget"
|
|
15534
|
+
},
|
|
14934
15535
|
"geometry.get-buffer-distance": {
|
|
14935
15536
|
"description": "Returns the default buffer distance for the viewer session.",
|
|
14936
15537
|
"enum": [
|
|
@@ -14965,6 +15566,33 @@
|
|
|
14965
15566
|
},
|
|
14966
15567
|
"type": "array"
|
|
14967
15568
|
},
|
|
15569
|
+
"geometry.set-buffer-distance": {
|
|
15570
|
+
"description": "Sets the default buffer distance for the viewer session. The buffer distance must be a number > 0.",
|
|
15571
|
+
"enum": [
|
|
15572
|
+
"geometry.set-buffer-distance"
|
|
15573
|
+
]
|
|
15574
|
+
},
|
|
15575
|
+
"geometry.set-buffer-distance:input": {
|
|
15576
|
+
"type": "number"
|
|
15577
|
+
},
|
|
15578
|
+
"geometry.set-buffer-units": {
|
|
15579
|
+
"description": "Sets the default buffer units for the viewer session.",
|
|
15580
|
+
"enum": [
|
|
15581
|
+
"geometry.set-buffer-units"
|
|
15582
|
+
]
|
|
15583
|
+
},
|
|
15584
|
+
"geometry.set-buffer-units:input": {
|
|
15585
|
+
"description": "The units for distance buffers supported by ArcGIS.",
|
|
15586
|
+
"enum": [
|
|
15587
|
+
"feet",
|
|
15588
|
+
"kilometers",
|
|
15589
|
+
"meters",
|
|
15590
|
+
"miles",
|
|
15591
|
+
"nautical-miles",
|
|
15592
|
+
"yards"
|
|
15593
|
+
],
|
|
15594
|
+
"type": "string"
|
|
15595
|
+
},
|
|
14968
15596
|
"highlights.add": {
|
|
14969
15597
|
"description": "Applies highlighting to one or more features.",
|
|
14970
15598
|
"enum": [
|
|
@@ -15000,15 +15628,15 @@
|
|
|
15000
15628
|
{
|
|
15001
15629
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15002
15630
|
},
|
|
15003
|
-
{
|
|
15004
|
-
"$ref": "#/definitions/HasMaps"
|
|
15005
|
-
},
|
|
15006
15631
|
{
|
|
15007
15632
|
"items": {
|
|
15008
15633
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15009
15634
|
},
|
|
15010
15635
|
"type": "array"
|
|
15011
15636
|
},
|
|
15637
|
+
{
|
|
15638
|
+
"$ref": "#/definitions/HasMaps"
|
|
15639
|
+
},
|
|
15012
15640
|
{
|
|
15013
15641
|
"type": "null"
|
|
15014
15642
|
}
|
|
@@ -15019,15 +15647,15 @@
|
|
|
15019
15647
|
{
|
|
15020
15648
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15021
15649
|
},
|
|
15022
|
-
{
|
|
15023
|
-
"$ref": "#/definitions/HasMaps"
|
|
15024
|
-
},
|
|
15025
15650
|
{
|
|
15026
15651
|
"items": {
|
|
15027
15652
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15028
15653
|
},
|
|
15029
15654
|
"type": "array"
|
|
15030
15655
|
},
|
|
15656
|
+
{
|
|
15657
|
+
"$ref": "#/definitions/HasMaps"
|
|
15658
|
+
},
|
|
15031
15659
|
{
|
|
15032
15660
|
"type": "null"
|
|
15033
15661
|
}
|
|
@@ -15092,26 +15720,26 @@
|
|
|
15092
15720
|
},
|
|
15093
15721
|
"kpi.add-features:input": {
|
|
15094
15722
|
"anyOf": [
|
|
15095
|
-
{
|
|
15096
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15097
|
-
},
|
|
15098
15723
|
{
|
|
15099
15724
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15100
15725
|
},
|
|
15101
15726
|
{
|
|
15102
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
15727
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15103
15728
|
},
|
|
15104
15729
|
{
|
|
15105
15730
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
15106
15731
|
},
|
|
15732
|
+
{
|
|
15733
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15734
|
+
},
|
|
15107
15735
|
{
|
|
15108
15736
|
"items": {
|
|
15109
15737
|
"anyOf": [
|
|
15110
15738
|
{
|
|
15111
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15739
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
15112
15740
|
},
|
|
15113
15741
|
{
|
|
15114
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15742
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15115
15743
|
}
|
|
15116
15744
|
]
|
|
15117
15745
|
},
|
|
@@ -15152,26 +15780,26 @@
|
|
|
15152
15780
|
},
|
|
15153
15781
|
"kpi.display:input": {
|
|
15154
15782
|
"anyOf": [
|
|
15155
|
-
{
|
|
15156
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15157
|
-
},
|
|
15158
15783
|
{
|
|
15159
15784
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15160
15785
|
},
|
|
15161
15786
|
{
|
|
15162
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
15787
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15163
15788
|
},
|
|
15164
15789
|
{
|
|
15165
15790
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
15166
15791
|
},
|
|
15792
|
+
{
|
|
15793
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15794
|
+
},
|
|
15167
15795
|
{
|
|
15168
15796
|
"items": {
|
|
15169
15797
|
"anyOf": [
|
|
15170
15798
|
{
|
|
15171
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15799
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
15172
15800
|
},
|
|
15173
15801
|
{
|
|
15174
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15802
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15175
15803
|
}
|
|
15176
15804
|
]
|
|
15177
15805
|
},
|
|
@@ -15227,26 +15855,26 @@
|
|
|
15227
15855
|
},
|
|
15228
15856
|
"kpi.remove-features:input": {
|
|
15229
15857
|
"anyOf": [
|
|
15230
|
-
{
|
|
15231
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15232
|
-
},
|
|
15233
15858
|
{
|
|
15234
15859
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15235
15860
|
},
|
|
15236
15861
|
{
|
|
15237
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
15862
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15238
15863
|
},
|
|
15239
15864
|
{
|
|
15240
15865
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
15241
15866
|
},
|
|
15867
|
+
{
|
|
15868
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15869
|
+
},
|
|
15242
15870
|
{
|
|
15243
15871
|
"items": {
|
|
15244
15872
|
"anyOf": [
|
|
15245
15873
|
{
|
|
15246
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15874
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
15247
15875
|
},
|
|
15248
15876
|
{
|
|
15249
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
15877
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15250
15878
|
}
|
|
15251
15879
|
]
|
|
15252
15880
|
},
|
|
@@ -15412,10 +16040,10 @@
|
|
|
15412
16040
|
"location-marker.clear:input": {
|
|
15413
16041
|
"anyOf": [
|
|
15414
16042
|
{
|
|
15415
|
-
"$ref": "
|
|
16043
|
+
"$ref": "#/definitions/Model"
|
|
15416
16044
|
},
|
|
15417
16045
|
{
|
|
15418
|
-
"$ref": "
|
|
16046
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15419
16047
|
},
|
|
15420
16048
|
{
|
|
15421
16049
|
"items": {
|
|
@@ -15486,16 +16114,16 @@
|
|
|
15486
16114
|
"map.add-markup:input": {
|
|
15487
16115
|
"anyOf": [
|
|
15488
16116
|
{
|
|
15489
|
-
"$ref": "#/definitions/
|
|
16117
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
15490
16118
|
},
|
|
15491
16119
|
{
|
|
15492
|
-
"$ref": "#/definitions/esri.
|
|
16120
|
+
"$ref": "#/definitions/esri.Graphic"
|
|
15493
16121
|
},
|
|
15494
16122
|
{
|
|
15495
16123
|
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
15496
16124
|
},
|
|
15497
16125
|
{
|
|
15498
|
-
"$ref": "#/definitions/
|
|
16126
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
15499
16127
|
},
|
|
15500
16128
|
{
|
|
15501
16129
|
"items": {
|
|
@@ -15544,15 +16172,15 @@
|
|
|
15544
16172
|
{
|
|
15545
16173
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15546
16174
|
},
|
|
15547
|
-
{
|
|
15548
|
-
"$ref": "#/definitions/HasMaps"
|
|
15549
|
-
},
|
|
15550
16175
|
{
|
|
15551
16176
|
"items": {
|
|
15552
16177
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15553
16178
|
},
|
|
15554
16179
|
"type": "array"
|
|
15555
16180
|
},
|
|
16181
|
+
{
|
|
16182
|
+
"$ref": "#/definitions/HasMaps"
|
|
16183
|
+
},
|
|
15556
16184
|
{
|
|
15557
16185
|
"type": "null"
|
|
15558
16186
|
}
|
|
@@ -15569,15 +16197,15 @@
|
|
|
15569
16197
|
{
|
|
15570
16198
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15571
16199
|
},
|
|
15572
|
-
{
|
|
15573
|
-
"$ref": "#/definitions/HasMaps"
|
|
15574
|
-
},
|
|
15575
16200
|
{
|
|
15576
16201
|
"items": {
|
|
15577
16202
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15578
16203
|
},
|
|
15579
16204
|
"type": "array"
|
|
15580
16205
|
},
|
|
16206
|
+
{
|
|
16207
|
+
"$ref": "#/definitions/HasMaps"
|
|
16208
|
+
},
|
|
15581
16209
|
{
|
|
15582
16210
|
"type": "null"
|
|
15583
16211
|
}
|
|
@@ -15636,15 +16264,15 @@
|
|
|
15636
16264
|
{
|
|
15637
16265
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15638
16266
|
},
|
|
15639
|
-
{
|
|
15640
|
-
"$ref": "#/definitions/HasMaps"
|
|
15641
|
-
},
|
|
15642
16267
|
{
|
|
15643
16268
|
"items": {
|
|
15644
16269
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15645
16270
|
},
|
|
15646
16271
|
"type": "array"
|
|
15647
16272
|
},
|
|
16273
|
+
{
|
|
16274
|
+
"$ref": "#/definitions/HasMaps"
|
|
16275
|
+
},
|
|
15648
16276
|
{
|
|
15649
16277
|
"type": "null"
|
|
15650
16278
|
}
|
|
@@ -15676,15 +16304,15 @@
|
|
|
15676
16304
|
{
|
|
15677
16305
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15678
16306
|
},
|
|
15679
|
-
{
|
|
15680
|
-
"$ref": "#/definitions/HasMaps"
|
|
15681
|
-
},
|
|
15682
16307
|
{
|
|
15683
16308
|
"items": {
|
|
15684
16309
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15685
16310
|
},
|
|
15686
16311
|
"type": "array"
|
|
15687
16312
|
},
|
|
16313
|
+
{
|
|
16314
|
+
"$ref": "#/definitions/HasMaps"
|
|
16315
|
+
},
|
|
15688
16316
|
{
|
|
15689
16317
|
"type": "null"
|
|
15690
16318
|
}
|
|
@@ -15716,15 +16344,15 @@
|
|
|
15716
16344
|
{
|
|
15717
16345
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15718
16346
|
},
|
|
15719
|
-
{
|
|
15720
|
-
"$ref": "#/definitions/HasMaps"
|
|
15721
|
-
},
|
|
15722
16347
|
{
|
|
15723
16348
|
"items": {
|
|
15724
16349
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15725
16350
|
},
|
|
15726
16351
|
"type": "array"
|
|
15727
16352
|
},
|
|
16353
|
+
{
|
|
16354
|
+
"$ref": "#/definitions/HasMaps"
|
|
16355
|
+
},
|
|
15728
16356
|
{
|
|
15729
16357
|
"type": "null"
|
|
15730
16358
|
}
|
|
@@ -15751,55 +16379,31 @@
|
|
|
15751
16379
|
"map.go-to-geometry:input": {
|
|
15752
16380
|
"anyOf": [
|
|
15753
16381
|
{
|
|
15754
|
-
"$ref": "#/definitions/
|
|
16382
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
15755
16383
|
},
|
|
15756
16384
|
{
|
|
15757
16385
|
"$ref": "#/definitions/esri.Graphic"
|
|
15758
16386
|
},
|
|
15759
|
-
{
|
|
15760
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
15761
|
-
},
|
|
15762
|
-
{
|
|
15763
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
15764
|
-
},
|
|
15765
|
-
{
|
|
15766
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
15767
|
-
},
|
|
15768
|
-
{
|
|
15769
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
15770
|
-
},
|
|
15771
|
-
{
|
|
15772
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
15773
|
-
},
|
|
15774
|
-
{
|
|
15775
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
15776
|
-
},
|
|
15777
|
-
{
|
|
15778
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
15779
|
-
},
|
|
15780
|
-
{
|
|
15781
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15782
|
-
},
|
|
15783
16387
|
{
|
|
15784
16388
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15785
16389
|
},
|
|
15786
16390
|
{
|
|
15787
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
16391
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15788
16392
|
},
|
|
15789
16393
|
{
|
|
15790
16394
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
15791
16395
|
},
|
|
15792
16396
|
{
|
|
15793
|
-
"$ref": "
|
|
16397
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15794
16398
|
},
|
|
15795
16399
|
{
|
|
15796
16400
|
"items": {
|
|
15797
16401
|
"anyOf": [
|
|
15798
16402
|
{
|
|
15799
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16403
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
15800
16404
|
},
|
|
15801
16405
|
{
|
|
15802
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16406
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15803
16407
|
}
|
|
15804
16408
|
]
|
|
15805
16409
|
},
|
|
@@ -15808,6 +16412,12 @@
|
|
|
15808
16412
|
{
|
|
15809
16413
|
"$ref": "#/definitions/HasFeatures"
|
|
15810
16414
|
},
|
|
16415
|
+
{
|
|
16416
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
16417
|
+
},
|
|
16418
|
+
{
|
|
16419
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
16420
|
+
},
|
|
15811
16421
|
{
|
|
15812
16422
|
"items": {
|
|
15813
16423
|
"anyOf": [
|
|
@@ -15821,26 +16431,44 @@
|
|
|
15821
16431
|
},
|
|
15822
16432
|
"type": "array"
|
|
15823
16433
|
},
|
|
16434
|
+
{
|
|
16435
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16436
|
+
},
|
|
16437
|
+
{
|
|
16438
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16439
|
+
},
|
|
16440
|
+
{
|
|
16441
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16442
|
+
},
|
|
16443
|
+
{
|
|
16444
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16445
|
+
},
|
|
16446
|
+
{
|
|
16447
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16448
|
+
},
|
|
16449
|
+
{
|
|
16450
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
16451
|
+
},
|
|
15824
16452
|
{
|
|
15825
16453
|
"items": {
|
|
15826
16454
|
"anyOf": [
|
|
15827
16455
|
{
|
|
15828
|
-
"$ref": "#/definitions/esri.
|
|
16456
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
15829
16457
|
},
|
|
15830
16458
|
{
|
|
15831
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16459
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
15832
16460
|
},
|
|
15833
16461
|
{
|
|
15834
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16462
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
15835
16463
|
},
|
|
15836
16464
|
{
|
|
15837
16465
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
15838
16466
|
},
|
|
15839
16467
|
{
|
|
15840
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16468
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
15841
16469
|
},
|
|
15842
16470
|
{
|
|
15843
|
-
"$ref": "#/definitions/esri.
|
|
16471
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
15844
16472
|
}
|
|
15845
16473
|
]
|
|
15846
16474
|
},
|
|
@@ -15865,15 +16493,15 @@
|
|
|
15865
16493
|
{
|
|
15866
16494
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15867
16495
|
},
|
|
15868
|
-
{
|
|
15869
|
-
"$ref": "#/definitions/HasMaps"
|
|
15870
|
-
},
|
|
15871
16496
|
{
|
|
15872
16497
|
"items": {
|
|
15873
16498
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
15874
16499
|
},
|
|
15875
16500
|
"type": "array"
|
|
15876
16501
|
},
|
|
16502
|
+
{
|
|
16503
|
+
"$ref": "#/definitions/HasMaps"
|
|
16504
|
+
},
|
|
15877
16505
|
{
|
|
15878
16506
|
"type": "null"
|
|
15879
16507
|
}
|
|
@@ -15906,13 +16534,13 @@
|
|
|
15906
16534
|
"map.go-to-viewpoint:input": {
|
|
15907
16535
|
"anyOf": [
|
|
15908
16536
|
{
|
|
15909
|
-
"$ref": "
|
|
16537
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
|
|
15910
16538
|
},
|
|
15911
16539
|
{
|
|
15912
|
-
"$ref": "#/definitions/esri.
|
|
16540
|
+
"$ref": "#/definitions/esri.Viewpoint"
|
|
15913
16541
|
},
|
|
15914
16542
|
{
|
|
15915
|
-
"$ref": "
|
|
16543
|
+
"$ref": "#/definitions/esri.rest-api.Viewpoint.Viewpoint"
|
|
15916
16544
|
},
|
|
15917
16545
|
{
|
|
15918
16546
|
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.Bookmark"
|
|
@@ -15940,55 +16568,31 @@
|
|
|
15940
16568
|
"map.pan-to-geometry:input": {
|
|
15941
16569
|
"anyOf": [
|
|
15942
16570
|
{
|
|
15943
|
-
"$ref": "#/definitions/
|
|
16571
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
15944
16572
|
},
|
|
15945
16573
|
{
|
|
15946
16574
|
"$ref": "#/definitions/esri.Graphic"
|
|
15947
16575
|
},
|
|
15948
|
-
{
|
|
15949
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
15950
|
-
},
|
|
15951
|
-
{
|
|
15952
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
15953
|
-
},
|
|
15954
|
-
{
|
|
15955
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
15956
|
-
},
|
|
15957
|
-
{
|
|
15958
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
15959
|
-
},
|
|
15960
|
-
{
|
|
15961
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
15962
|
-
},
|
|
15963
|
-
{
|
|
15964
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
15965
|
-
},
|
|
15966
|
-
{
|
|
15967
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
15968
|
-
},
|
|
15969
|
-
{
|
|
15970
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15971
|
-
},
|
|
15972
16576
|
{
|
|
15973
16577
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15974
16578
|
},
|
|
15975
16579
|
{
|
|
15976
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
16580
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
15977
16581
|
},
|
|
15978
16582
|
{
|
|
15979
16583
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
15980
16584
|
},
|
|
15981
16585
|
{
|
|
15982
|
-
"$ref": "
|
|
16586
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15983
16587
|
},
|
|
15984
16588
|
{
|
|
15985
16589
|
"items": {
|
|
15986
16590
|
"anyOf": [
|
|
15987
16591
|
{
|
|
15988
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16592
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
15989
16593
|
},
|
|
15990
16594
|
{
|
|
15991
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16595
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
15992
16596
|
}
|
|
15993
16597
|
]
|
|
15994
16598
|
},
|
|
@@ -15997,6 +16601,12 @@
|
|
|
15997
16601
|
{
|
|
15998
16602
|
"$ref": "#/definitions/HasFeatures"
|
|
15999
16603
|
},
|
|
16604
|
+
{
|
|
16605
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
16606
|
+
},
|
|
16607
|
+
{
|
|
16608
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
16609
|
+
},
|
|
16000
16610
|
{
|
|
16001
16611
|
"items": {
|
|
16002
16612
|
"anyOf": [
|
|
@@ -16010,26 +16620,44 @@
|
|
|
16010
16620
|
},
|
|
16011
16621
|
"type": "array"
|
|
16012
16622
|
},
|
|
16623
|
+
{
|
|
16624
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16625
|
+
},
|
|
16626
|
+
{
|
|
16627
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16628
|
+
},
|
|
16629
|
+
{
|
|
16630
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16631
|
+
},
|
|
16632
|
+
{
|
|
16633
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16634
|
+
},
|
|
16635
|
+
{
|
|
16636
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16637
|
+
},
|
|
16638
|
+
{
|
|
16639
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
16640
|
+
},
|
|
16013
16641
|
{
|
|
16014
16642
|
"items": {
|
|
16015
16643
|
"anyOf": [
|
|
16016
16644
|
{
|
|
16017
|
-
"$ref": "#/definitions/esri.
|
|
16645
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16018
16646
|
},
|
|
16019
16647
|
{
|
|
16020
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16648
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16021
16649
|
},
|
|
16022
16650
|
{
|
|
16023
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16651
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16024
16652
|
},
|
|
16025
16653
|
{
|
|
16026
16654
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16027
16655
|
},
|
|
16028
16656
|
{
|
|
16029
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16657
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16030
16658
|
},
|
|
16031
16659
|
{
|
|
16032
|
-
"$ref": "#/definitions/esri.
|
|
16660
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
16033
16661
|
}
|
|
16034
16662
|
]
|
|
16035
16663
|
},
|
|
@@ -16061,16 +16689,16 @@
|
|
|
16061
16689
|
"map.remove-layers:input": {
|
|
16062
16690
|
"anyOf": [
|
|
16063
16691
|
{
|
|
16064
|
-
"$ref": "#/definitions
|
|
16692
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
16065
16693
|
},
|
|
16066
16694
|
{
|
|
16067
|
-
"$ref": "esri.
|
|
16695
|
+
"$ref": "#/definitions/esri.Layer"
|
|
16068
16696
|
},
|
|
16069
16697
|
{
|
|
16070
|
-
"$ref": "
|
|
16698
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
16071
16699
|
},
|
|
16072
16700
|
{
|
|
16073
|
-
"$ref": "
|
|
16701
|
+
"$ref": "esri.SublayerLike"
|
|
16074
16702
|
},
|
|
16075
16703
|
{
|
|
16076
16704
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -16079,16 +16707,16 @@
|
|
|
16079
16707
|
"items": {
|
|
16080
16708
|
"anyOf": [
|
|
16081
16709
|
{
|
|
16082
|
-
"$ref": "#/definitions
|
|
16710
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference"
|
|
16083
16711
|
},
|
|
16084
16712
|
{
|
|
16085
|
-
"$ref": "esri.
|
|
16713
|
+
"$ref": "#/definitions/esri.Layer"
|
|
16086
16714
|
},
|
|
16087
16715
|
{
|
|
16088
|
-
"$ref": "
|
|
16716
|
+
"$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
|
|
16089
16717
|
},
|
|
16090
16718
|
{
|
|
16091
|
-
"$ref": "
|
|
16719
|
+
"$ref": "esri.SublayerLike"
|
|
16092
16720
|
},
|
|
16093
16721
|
{
|
|
16094
16722
|
"$ref": "@vertigis.arcgis-extensions.mapping._SublayerExtension.SublayerExtension"
|
|
@@ -16127,6 +16755,26 @@
|
|
|
16127
16755
|
"map.rotate-to:input": {
|
|
16128
16756
|
"$ref": "MapRotateArgs"
|
|
16129
16757
|
},
|
|
16758
|
+
"map.set-view-mode": {
|
|
16759
|
+
"description": "Changes the view mode of a map to the specified mode, if supported. If no maps are specified, all maps will be targeted.",
|
|
16760
|
+
"enum": [
|
|
16761
|
+
"map.set-view-mode"
|
|
16762
|
+
]
|
|
16763
|
+
},
|
|
16764
|
+
"map.set-view-mode:input": {
|
|
16765
|
+
"anyOf": [
|
|
16766
|
+
{
|
|
16767
|
+
"$ref": "#/definitions/SetViewModeArgs"
|
|
16768
|
+
},
|
|
16769
|
+
{
|
|
16770
|
+
"enum": [
|
|
16771
|
+
"map",
|
|
16772
|
+
"scene"
|
|
16773
|
+
],
|
|
16774
|
+
"type": "string"
|
|
16775
|
+
}
|
|
16776
|
+
]
|
|
16777
|
+
},
|
|
16130
16778
|
"map.update-layer": {
|
|
16131
16779
|
"description": "Updates a layer in the map.",
|
|
16132
16780
|
"enum": [
|
|
@@ -16147,15 +16795,15 @@
|
|
|
16147
16795
|
{
|
|
16148
16796
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16149
16797
|
},
|
|
16150
|
-
{
|
|
16151
|
-
"$ref": "#/definitions/HasMaps"
|
|
16152
|
-
},
|
|
16153
16798
|
{
|
|
16154
16799
|
"items": {
|
|
16155
16800
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16156
16801
|
},
|
|
16157
16802
|
"type": "array"
|
|
16158
16803
|
},
|
|
16804
|
+
{
|
|
16805
|
+
"$ref": "#/definitions/HasMaps"
|
|
16806
|
+
},
|
|
16159
16807
|
{
|
|
16160
16808
|
"type": "null"
|
|
16161
16809
|
}
|
|
@@ -16172,15 +16820,15 @@
|
|
|
16172
16820
|
{
|
|
16173
16821
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16174
16822
|
},
|
|
16175
|
-
{
|
|
16176
|
-
"$ref": "#/definitions/HasMaps"
|
|
16177
|
-
},
|
|
16178
16823
|
{
|
|
16179
16824
|
"items": {
|
|
16180
16825
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16181
16826
|
},
|
|
16182
16827
|
"type": "array"
|
|
16183
16828
|
},
|
|
16829
|
+
{
|
|
16830
|
+
"$ref": "#/definitions/HasMaps"
|
|
16831
|
+
},
|
|
16184
16832
|
{
|
|
16185
16833
|
"type": "null"
|
|
16186
16834
|
}
|
|
@@ -16204,55 +16852,31 @@
|
|
|
16204
16852
|
"map.zoom-to-geometry:input": {
|
|
16205
16853
|
"anyOf": [
|
|
16206
16854
|
{
|
|
16207
|
-
"$ref": "#/definitions/
|
|
16855
|
+
"$ref": "#/definitions/CreateGraphicsResult"
|
|
16208
16856
|
},
|
|
16209
16857
|
{
|
|
16210
16858
|
"$ref": "#/definitions/esri.Graphic"
|
|
16211
16859
|
},
|
|
16212
|
-
{
|
|
16213
|
-
"$ref": "#/definitions/esri.FeatureSet"
|
|
16214
|
-
},
|
|
16215
|
-
{
|
|
16216
|
-
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16217
|
-
},
|
|
16218
|
-
{
|
|
16219
|
-
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16220
|
-
},
|
|
16221
|
-
{
|
|
16222
|
-
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16223
|
-
},
|
|
16224
|
-
{
|
|
16225
|
-
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16226
|
-
},
|
|
16227
|
-
{
|
|
16228
|
-
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16229
|
-
},
|
|
16230
|
-
{
|
|
16231
|
-
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
16232
|
-
},
|
|
16233
|
-
{
|
|
16234
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16235
|
-
},
|
|
16236
16860
|
{
|
|
16237
16861
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16238
16862
|
},
|
|
16239
16863
|
{
|
|
16240
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
16864
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16241
16865
|
},
|
|
16242
16866
|
{
|
|
16243
16867
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16244
16868
|
},
|
|
16245
16869
|
{
|
|
16246
|
-
"$ref": "
|
|
16870
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
16247
16871
|
},
|
|
16248
16872
|
{
|
|
16249
16873
|
"items": {
|
|
16250
16874
|
"anyOf": [
|
|
16251
16875
|
{
|
|
16252
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16876
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16253
16877
|
},
|
|
16254
16878
|
{
|
|
16255
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
16879
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16256
16880
|
}
|
|
16257
16881
|
]
|
|
16258
16882
|
},
|
|
@@ -16261,6 +16885,12 @@
|
|
|
16261
16885
|
{
|
|
16262
16886
|
"$ref": "#/definitions/HasFeatures"
|
|
16263
16887
|
},
|
|
16888
|
+
{
|
|
16889
|
+
"$ref": "#/definitions/esri.rest-api.Feature.Feature"
|
|
16890
|
+
},
|
|
16891
|
+
{
|
|
16892
|
+
"$ref": "#/definitions/esri.FeatureSet"
|
|
16893
|
+
},
|
|
16264
16894
|
{
|
|
16265
16895
|
"items": {
|
|
16266
16896
|
"anyOf": [
|
|
@@ -16274,26 +16904,44 @@
|
|
|
16274
16904
|
},
|
|
16275
16905
|
"type": "array"
|
|
16276
16906
|
},
|
|
16907
|
+
{
|
|
16908
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16909
|
+
},
|
|
16910
|
+
{
|
|
16911
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16912
|
+
},
|
|
16913
|
+
{
|
|
16914
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16915
|
+
},
|
|
16916
|
+
{
|
|
16917
|
+
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16918
|
+
},
|
|
16919
|
+
{
|
|
16920
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16921
|
+
},
|
|
16922
|
+
{
|
|
16923
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
16924
|
+
},
|
|
16277
16925
|
{
|
|
16278
16926
|
"items": {
|
|
16279
16927
|
"anyOf": [
|
|
16280
16928
|
{
|
|
16281
|
-
"$ref": "#/definitions/esri.
|
|
16929
|
+
"$ref": "#/definitions/esri.rest-api.Point.Point"
|
|
16282
16930
|
},
|
|
16283
16931
|
{
|
|
16284
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16932
|
+
"$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
|
|
16285
16933
|
},
|
|
16286
16934
|
{
|
|
16287
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16935
|
+
"$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
|
|
16288
16936
|
},
|
|
16289
16937
|
{
|
|
16290
16938
|
"$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
|
|
16291
16939
|
},
|
|
16292
16940
|
{
|
|
16293
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
16941
|
+
"$ref": "#/definitions/esri.rest-api.Extent.Extent"
|
|
16294
16942
|
},
|
|
16295
16943
|
{
|
|
16296
|
-
"$ref": "#/definitions/esri.
|
|
16944
|
+
"$ref": "#/definitions/esri.Geometry"
|
|
16297
16945
|
}
|
|
16298
16946
|
]
|
|
16299
16947
|
},
|
|
@@ -16318,15 +16966,15 @@
|
|
|
16318
16966
|
{
|
|
16319
16967
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16320
16968
|
},
|
|
16321
|
-
{
|
|
16322
|
-
"$ref": "#/definitions/HasMaps"
|
|
16323
|
-
},
|
|
16324
16969
|
{
|
|
16325
16970
|
"items": {
|
|
16326
16971
|
"$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
|
|
16327
16972
|
},
|
|
16328
16973
|
"type": "array"
|
|
16329
16974
|
},
|
|
16975
|
+
{
|
|
16976
|
+
"$ref": "#/definitions/HasMaps"
|
|
16977
|
+
},
|
|
16330
16978
|
{
|
|
16331
16979
|
"type": "null"
|
|
16332
16980
|
}
|
|
@@ -16368,13 +17016,13 @@
|
|
|
16368
17016
|
"map.zoom-to-viewpoint:input": {
|
|
16369
17017
|
"anyOf": [
|
|
16370
17018
|
{
|
|
16371
|
-
"$ref": "
|
|
17019
|
+
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
|
|
16372
17020
|
},
|
|
16373
17021
|
{
|
|
16374
|
-
"$ref": "#/definitions/esri.
|
|
17022
|
+
"$ref": "#/definitions/esri.Viewpoint"
|
|
16375
17023
|
},
|
|
16376
17024
|
{
|
|
16377
|
-
"$ref": "
|
|
17025
|
+
"$ref": "#/definitions/esri.rest-api.Viewpoint.Viewpoint"
|
|
16378
17026
|
},
|
|
16379
17027
|
{
|
|
16380
17028
|
"$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.Bookmark"
|
|
@@ -16545,49 +17193,49 @@
|
|
|
16545
17193
|
"measurement.set-default-symbol:input": {
|
|
16546
17194
|
"anyOf": [
|
|
16547
17195
|
{
|
|
16548
|
-
"$ref": "#/definitions/esri.
|
|
17196
|
+
"$ref": "#/definitions/esri.rest-api.SimpleMarkerSymbol.SimpleMarkerSymbol"
|
|
16549
17197
|
},
|
|
16550
17198
|
{
|
|
16551
|
-
"$ref": "#/definitions/esri.
|
|
17199
|
+
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
16552
17200
|
},
|
|
16553
17201
|
{
|
|
16554
|
-
"$ref": "#/definitions/esri.
|
|
17202
|
+
"$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol"
|
|
16555
17203
|
},
|
|
16556
17204
|
{
|
|
16557
|
-
"$ref": "#/definitions/esri.
|
|
17205
|
+
"$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol"
|
|
16558
17206
|
},
|
|
16559
17207
|
{
|
|
16560
|
-
"$ref": "#/definitions/esri.
|
|
17208
|
+
"$ref": "#/definitions/esri.rest-api.PictureFillSymbol.PictureFillSymbol"
|
|
16561
17209
|
},
|
|
16562
17210
|
{
|
|
16563
|
-
"$ref": "#/definitions/esri.
|
|
17211
|
+
"$ref": "#/definitions/esri.SimpleMarkerSymbol"
|
|
16564
17212
|
},
|
|
16565
17213
|
{
|
|
16566
|
-
"$ref": "#/definitions/esri.
|
|
17214
|
+
"$ref": "#/definitions/esri.PictureMarkerSymbol"
|
|
16567
17215
|
},
|
|
16568
17216
|
{
|
|
16569
|
-
"$ref": "#/definitions/esri.
|
|
17217
|
+
"$ref": "#/definitions/esri.SimpleLineSymbol"
|
|
16570
17218
|
},
|
|
16571
17219
|
{
|
|
16572
|
-
"$ref": "#/definitions/esri.
|
|
17220
|
+
"$ref": "#/definitions/esri.SimpleFillSymbol"
|
|
16573
17221
|
},
|
|
16574
17222
|
{
|
|
16575
|
-
"$ref": "#/definitions/esri.
|
|
17223
|
+
"$ref": "#/definitions/esri.PictureFillSymbol"
|
|
16576
17224
|
},
|
|
16577
17225
|
{
|
|
16578
|
-
"$ref": "#/definitions/esri.
|
|
17226
|
+
"$ref": "#/definitions/esri.PointSymbol3D"
|
|
16579
17227
|
},
|
|
16580
17228
|
{
|
|
16581
|
-
"$ref": "#/definitions/esri.rest-api.
|
|
17229
|
+
"$ref": "#/definitions/esri.rest-api.PointSymbol3D.PointSymbol3D"
|
|
16582
17230
|
},
|
|
16583
17231
|
{
|
|
16584
|
-
"$ref": "#/definitions/esri.
|
|
17232
|
+
"$ref": "#/definitions/esri.LineSymbol3D"
|
|
16585
17233
|
},
|
|
16586
17234
|
{
|
|
16587
17235
|
"$ref": "#/definitions/esri.rest-api.LineSymbol3D.LineSymbol3D"
|
|
16588
17236
|
},
|
|
16589
17237
|
{
|
|
16590
|
-
"$ref": "#/definitions/esri.
|
|
17238
|
+
"$ref": "#/definitions/esri.PolygonSymbol3D"
|
|
16591
17239
|
},
|
|
16592
17240
|
{
|
|
16593
17241
|
"$ref": "#/definitions/esri.rest-api.PolygonSymbol3D.PolygonSymbol3D"
|
|
@@ -16732,26 +17380,26 @@
|
|
|
16732
17380
|
},
|
|
16733
17381
|
"results.convert-to-csv:input": {
|
|
16734
17382
|
"anyOf": [
|
|
16735
|
-
{
|
|
16736
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16737
|
-
},
|
|
16738
17383
|
{
|
|
16739
17384
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16740
17385
|
},
|
|
16741
17386
|
{
|
|
16742
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17387
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16743
17388
|
},
|
|
16744
17389
|
{
|
|
16745
17390
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16746
17391
|
},
|
|
17392
|
+
{
|
|
17393
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17394
|
+
},
|
|
16747
17395
|
{
|
|
16748
17396
|
"items": {
|
|
16749
17397
|
"anyOf": [
|
|
16750
17398
|
{
|
|
16751
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17399
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16752
17400
|
},
|
|
16753
17401
|
{
|
|
16754
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17402
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16755
17403
|
}
|
|
16756
17404
|
]
|
|
16757
17405
|
},
|
|
@@ -16776,26 +17424,26 @@
|
|
|
16776
17424
|
},
|
|
16777
17425
|
"results.convert-to-layers:input": {
|
|
16778
17426
|
"anyOf": [
|
|
16779
|
-
{
|
|
16780
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16781
|
-
},
|
|
16782
17427
|
{
|
|
16783
17428
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16784
17429
|
},
|
|
16785
17430
|
{
|
|
16786
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17431
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16787
17432
|
},
|
|
16788
17433
|
{
|
|
16789
17434
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16790
17435
|
},
|
|
17436
|
+
{
|
|
17437
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17438
|
+
},
|
|
16791
17439
|
{
|
|
16792
17440
|
"items": {
|
|
16793
17441
|
"anyOf": [
|
|
16794
17442
|
{
|
|
16795
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17443
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16796
17444
|
},
|
|
16797
17445
|
{
|
|
16798
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17446
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16799
17447
|
}
|
|
16800
17448
|
]
|
|
16801
17449
|
},
|
|
@@ -16823,26 +17471,26 @@
|
|
|
16823
17471
|
},
|
|
16824
17472
|
"results.convert-to-shapefile:input": {
|
|
16825
17473
|
"anyOf": [
|
|
16826
|
-
{
|
|
16827
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16828
|
-
},
|
|
16829
17474
|
{
|
|
16830
17475
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16831
17476
|
},
|
|
16832
17477
|
{
|
|
16833
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17478
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16834
17479
|
},
|
|
16835
17480
|
{
|
|
16836
17481
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16837
17482
|
},
|
|
17483
|
+
{
|
|
17484
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17485
|
+
},
|
|
16838
17486
|
{
|
|
16839
17487
|
"items": {
|
|
16840
17488
|
"anyOf": [
|
|
16841
17489
|
{
|
|
16842
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17490
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16843
17491
|
},
|
|
16844
17492
|
{
|
|
16845
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17493
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16846
17494
|
}
|
|
16847
17495
|
]
|
|
16848
17496
|
},
|
|
@@ -16867,26 +17515,26 @@
|
|
|
16867
17515
|
},
|
|
16868
17516
|
"results.convert-to-xlsx:input": {
|
|
16869
17517
|
"anyOf": [
|
|
16870
|
-
{
|
|
16871
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16872
|
-
},
|
|
16873
17518
|
{
|
|
16874
17519
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16875
17520
|
},
|
|
16876
17521
|
{
|
|
16877
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17522
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16878
17523
|
},
|
|
16879
17524
|
{
|
|
16880
17525
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16881
17526
|
},
|
|
17527
|
+
{
|
|
17528
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17529
|
+
},
|
|
16882
17530
|
{
|
|
16883
17531
|
"items": {
|
|
16884
17532
|
"anyOf": [
|
|
16885
17533
|
{
|
|
16886
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17534
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16887
17535
|
},
|
|
16888
17536
|
{
|
|
16889
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17537
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16890
17538
|
}
|
|
16891
17539
|
]
|
|
16892
17540
|
},
|
|
@@ -16917,26 +17565,26 @@
|
|
|
16917
17565
|
},
|
|
16918
17566
|
"results.display-details:input": {
|
|
16919
17567
|
"anyOf": [
|
|
16920
|
-
{
|
|
16921
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16922
|
-
},
|
|
16923
17568
|
{
|
|
16924
17569
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16925
17570
|
},
|
|
16926
17571
|
{
|
|
16927
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17572
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16928
17573
|
},
|
|
16929
17574
|
{
|
|
16930
17575
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16931
17576
|
},
|
|
17577
|
+
{
|
|
17578
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17579
|
+
},
|
|
16932
17580
|
{
|
|
16933
17581
|
"items": {
|
|
16934
17582
|
"anyOf": [
|
|
16935
17583
|
{
|
|
16936
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17584
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16937
17585
|
},
|
|
16938
17586
|
{
|
|
16939
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17587
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16940
17588
|
}
|
|
16941
17589
|
]
|
|
16942
17590
|
},
|
|
@@ -16958,26 +17606,26 @@
|
|
|
16958
17606
|
},
|
|
16959
17607
|
"results.display-new-details:input": {
|
|
16960
17608
|
"anyOf": [
|
|
16961
|
-
{
|
|
16962
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16963
|
-
},
|
|
16964
17609
|
{
|
|
16965
17610
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16966
17611
|
},
|
|
16967
17612
|
{
|
|
16968
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17613
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
16969
17614
|
},
|
|
16970
17615
|
{
|
|
16971
17616
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
16972
17617
|
},
|
|
17618
|
+
{
|
|
17619
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17620
|
+
},
|
|
16973
17621
|
{
|
|
16974
17622
|
"items": {
|
|
16975
17623
|
"anyOf": [
|
|
16976
17624
|
{
|
|
16977
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17625
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
16978
17626
|
},
|
|
16979
17627
|
{
|
|
16980
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17628
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
16981
17629
|
}
|
|
16982
17630
|
]
|
|
16983
17631
|
},
|
|
@@ -16999,26 +17647,26 @@
|
|
|
16999
17647
|
},
|
|
17000
17648
|
"results.display-summary:input": {
|
|
17001
17649
|
"anyOf": [
|
|
17002
|
-
{
|
|
17003
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17004
|
-
},
|
|
17005
17650
|
{
|
|
17006
17651
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
17007
17652
|
},
|
|
17008
17653
|
{
|
|
17009
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17654
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17010
17655
|
},
|
|
17011
17656
|
{
|
|
17012
17657
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
17013
17658
|
},
|
|
17659
|
+
{
|
|
17660
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17661
|
+
},
|
|
17014
17662
|
{
|
|
17015
17663
|
"items": {
|
|
17016
17664
|
"anyOf": [
|
|
17017
17665
|
{
|
|
17018
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17666
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
17019
17667
|
},
|
|
17020
17668
|
{
|
|
17021
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17669
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
17022
17670
|
}
|
|
17023
17671
|
]
|
|
17024
17672
|
},
|
|
@@ -17034,26 +17682,26 @@
|
|
|
17034
17682
|
},
|
|
17035
17683
|
"results.display:input": {
|
|
17036
17684
|
"anyOf": [
|
|
17037
|
-
{
|
|
17038
|
-
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17039
|
-
},
|
|
17040
17685
|
{
|
|
17041
17686
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
17042
17687
|
},
|
|
17043
17688
|
{
|
|
17044
|
-
"$ref": "@vertigis.arcgis-extensions.data.
|
|
17689
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
17045
17690
|
},
|
|
17046
17691
|
{
|
|
17047
17692
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
17048
17693
|
},
|
|
17694
|
+
{
|
|
17695
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
17696
|
+
},
|
|
17049
17697
|
{
|
|
17050
17698
|
"items": {
|
|
17051
17699
|
"anyOf": [
|
|
17052
17700
|
{
|
|
17053
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17701
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
17054
17702
|
},
|
|
17055
17703
|
{
|
|
17056
|
-
"$ref": "@vertigis.arcgis-extensions.data.Feature.
|
|
17704
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
17057
17705
|
}
|
|
17058
17706
|
]
|
|
17059
17707
|
},
|
|
@@ -17090,14 +17738,14 @@
|
|
|
17090
17738
|
{
|
|
17091
17739
|
"$ref": "Blob"
|
|
17092
17740
|
},
|
|
17093
|
-
{
|
|
17094
|
-
"$ref": "#/definitions/FromCsvConversionArgs"
|
|
17095
|
-
},
|
|
17096
17741
|
{
|
|
17097
17742
|
"items": {
|
|
17098
17743
|
"$ref": "Blob"
|
|
17099
17744
|
},
|
|
17100
17745
|
"type": "array"
|
|
17746
|
+
},
|
|
17747
|
+
{
|
|
17748
|
+
"$ref": "#/definitions/FromCsvConversionArgs"
|
|
17101
17749
|
}
|
|
17102
17750
|
]
|
|
17103
17751
|
},
|
|
@@ -17127,14 +17775,14 @@
|
|
|
17127
17775
|
{
|
|
17128
17776
|
"$ref": "Blob"
|
|
17129
17777
|
},
|
|
17130
|
-
{
|
|
17131
|
-
"$ref": "#/definitions/FromShapefileConversionArgs"
|
|
17132
|
-
},
|
|
17133
17778
|
{
|
|
17134
17779
|
"items": {
|
|
17135
17780
|
"$ref": "Blob"
|
|
17136
17781
|
},
|
|
17137
17782
|
"type": "array"
|
|
17783
|
+
},
|
|
17784
|
+
{
|
|
17785
|
+
"$ref": "#/definitions/FromShapefileConversionArgs"
|
|
17138
17786
|
}
|
|
17139
17787
|
]
|
|
17140
17788
|
},
|
|
@@ -17152,14 +17800,14 @@
|
|
|
17152
17800
|
{
|
|
17153
17801
|
"$ref": "Blob"
|
|
17154
17802
|
},
|
|
17155
|
-
{
|
|
17156
|
-
"$ref": "#/definitions/FromXLSXConversionArgs"
|
|
17157
|
-
},
|
|
17158
17803
|
{
|
|
17159
17804
|
"items": {
|
|
17160
17805
|
"$ref": "Blob"
|
|
17161
17806
|
},
|
|
17162
17807
|
"type": "array"
|
|
17808
|
+
},
|
|
17809
|
+
{
|
|
17810
|
+
"$ref": "#/definitions/FromXLSXConversionArgs"
|
|
17163
17811
|
}
|
|
17164
17812
|
]
|
|
17165
17813
|
},
|
|
@@ -17555,6 +18203,15 @@
|
|
|
17555
18203
|
"sketching.undo:input": {
|
|
17556
18204
|
"$ref": "#/definitions/HasMaps"
|
|
17557
18205
|
},
|
|
18206
|
+
"studio-analytics.track-custom-event": {
|
|
18207
|
+
"description": "Sends a custom event to VertiGIS Studio Analytics. If the app is not configured to use Analytics, then nothing will happen.",
|
|
18208
|
+
"enum": [
|
|
18209
|
+
"studio-analytics.track-custom-event"
|
|
18210
|
+
]
|
|
18211
|
+
},
|
|
18212
|
+
"studio-analytics.track-custom-event:input": {
|
|
18213
|
+
"$ref": "#/definitions/TrackCustomEventArgs"
|
|
18214
|
+
},
|
|
17558
18215
|
"system.display-sharing-link": {
|
|
17559
18216
|
"description": "Displays a sharing link to the user.",
|
|
17560
18217
|
"enum": [
|
|
@@ -17572,10 +18229,10 @@
|
|
|
17572
18229
|
},
|
|
17573
18230
|
"system.download-file:input": {
|
|
17574
18231
|
"anyOf": [
|
|
18232
|
+
{},
|
|
17575
18233
|
{
|
|
17576
18234
|
"$ref": "#/definitions/DownloadArgs"
|
|
17577
18235
|
},
|
|
17578
|
-
{},
|
|
17579
18236
|
{
|
|
17580
18237
|
"type": "string"
|
|
17581
18238
|
}
|
|
@@ -18387,6 +19044,54 @@
|
|
|
18387
19044
|
],
|
|
18388
19045
|
"type": "object"
|
|
18389
19046
|
},
|
|
19047
|
+
{
|
|
19048
|
+
"additionalProperties": false,
|
|
19049
|
+
"properties": {
|
|
19050
|
+
"arguments": {
|
|
19051
|
+
"$ref": "#/definitions/geometry.display-settings:input"
|
|
19052
|
+
},
|
|
19053
|
+
"name": {
|
|
19054
|
+
"$ref": "#/definitions/geometry.display-settings"
|
|
19055
|
+
}
|
|
19056
|
+
},
|
|
19057
|
+
"required": [
|
|
19058
|
+
"name",
|
|
19059
|
+
"arguments"
|
|
19060
|
+
],
|
|
19061
|
+
"type": "object"
|
|
19062
|
+
},
|
|
19063
|
+
{
|
|
19064
|
+
"additionalProperties": false,
|
|
19065
|
+
"properties": {
|
|
19066
|
+
"arguments": {
|
|
19067
|
+
"$ref": "#/definitions/geometry.set-buffer-distance:input"
|
|
19068
|
+
},
|
|
19069
|
+
"name": {
|
|
19070
|
+
"$ref": "#/definitions/geometry.set-buffer-distance"
|
|
19071
|
+
}
|
|
19072
|
+
},
|
|
19073
|
+
"required": [
|
|
19074
|
+
"name",
|
|
19075
|
+
"arguments"
|
|
19076
|
+
],
|
|
19077
|
+
"type": "object"
|
|
19078
|
+
},
|
|
19079
|
+
{
|
|
19080
|
+
"additionalProperties": false,
|
|
19081
|
+
"properties": {
|
|
19082
|
+
"arguments": {
|
|
19083
|
+
"$ref": "#/definitions/geometry.set-buffer-units:input"
|
|
19084
|
+
},
|
|
19085
|
+
"name": {
|
|
19086
|
+
"$ref": "#/definitions/geometry.set-buffer-units"
|
|
19087
|
+
}
|
|
19088
|
+
},
|
|
19089
|
+
"required": [
|
|
19090
|
+
"name",
|
|
19091
|
+
"arguments"
|
|
19092
|
+
],
|
|
19093
|
+
"type": "object"
|
|
19094
|
+
},
|
|
18390
19095
|
{
|
|
18391
19096
|
"additionalProperties": false,
|
|
18392
19097
|
"properties": {
|
|
@@ -19155,6 +19860,22 @@
|
|
|
19155
19860
|
],
|
|
19156
19861
|
"type": "object"
|
|
19157
19862
|
},
|
|
19863
|
+
{
|
|
19864
|
+
"additionalProperties": false,
|
|
19865
|
+
"properties": {
|
|
19866
|
+
"arguments": {
|
|
19867
|
+
"$ref": "#/definitions/map.set-view-mode:input"
|
|
19868
|
+
},
|
|
19869
|
+
"name": {
|
|
19870
|
+
"$ref": "#/definitions/map.set-view-mode"
|
|
19871
|
+
}
|
|
19872
|
+
},
|
|
19873
|
+
"required": [
|
|
19874
|
+
"name",
|
|
19875
|
+
"arguments"
|
|
19876
|
+
],
|
|
19877
|
+
"type": "object"
|
|
19878
|
+
},
|
|
19158
19879
|
{
|
|
19159
19880
|
"additionalProperties": false,
|
|
19160
19881
|
"properties": {
|
|
@@ -19811,6 +20532,22 @@
|
|
|
19811
20532
|
],
|
|
19812
20533
|
"type": "object"
|
|
19813
20534
|
},
|
|
20535
|
+
{
|
|
20536
|
+
"additionalProperties": false,
|
|
20537
|
+
"properties": {
|
|
20538
|
+
"arguments": {
|
|
20539
|
+
"$ref": "#/definitions/studio-analytics.track-custom-event:input"
|
|
20540
|
+
},
|
|
20541
|
+
"name": {
|
|
20542
|
+
"$ref": "#/definitions/studio-analytics.track-custom-event"
|
|
20543
|
+
}
|
|
20544
|
+
},
|
|
20545
|
+
"required": [
|
|
20546
|
+
"name",
|
|
20547
|
+
"arguments"
|
|
20548
|
+
],
|
|
20549
|
+
"type": "object"
|
|
20550
|
+
},
|
|
19814
20551
|
{
|
|
19815
20552
|
"additionalProperties": false,
|
|
19816
20553
|
"properties": {
|
|
@@ -20182,6 +20919,15 @@
|
|
|
20182
20919
|
{
|
|
20183
20920
|
"$ref": "#/definitions/geolocation.turn-off-geolocation"
|
|
20184
20921
|
},
|
|
20922
|
+
{
|
|
20923
|
+
"$ref": "#/definitions/geometry.display-settings"
|
|
20924
|
+
},
|
|
20925
|
+
{
|
|
20926
|
+
"$ref": "#/definitions/geometry.set-buffer-distance"
|
|
20927
|
+
},
|
|
20928
|
+
{
|
|
20929
|
+
"$ref": "#/definitions/geometry.set-buffer-units"
|
|
20930
|
+
},
|
|
20185
20931
|
{
|
|
20186
20932
|
"$ref": "#/definitions/highlights.add"
|
|
20187
20933
|
},
|
|
@@ -20326,6 +21072,9 @@
|
|
|
20326
21072
|
{
|
|
20327
21073
|
"$ref": "#/definitions/map.rotate-to"
|
|
20328
21074
|
},
|
|
21075
|
+
{
|
|
21076
|
+
"$ref": "#/definitions/map.set-view-mode"
|
|
21077
|
+
},
|
|
20329
21078
|
{
|
|
20330
21079
|
"$ref": "#/definitions/map.update-layer"
|
|
20331
21080
|
},
|
|
@@ -20467,6 +21216,9 @@
|
|
|
20467
21216
|
{
|
|
20468
21217
|
"$ref": "#/definitions/sketching.undo"
|
|
20469
21218
|
},
|
|
21219
|
+
{
|
|
21220
|
+
"$ref": "#/definitions/studio-analytics.track-custom-event"
|
|
21221
|
+
},
|
|
20470
21222
|
{
|
|
20471
21223
|
"$ref": "#/definitions/system.display-sharing-link"
|
|
20472
21224
|
},
|