@arcgis/core-adapter 4.32.0-next.20 → 4.32.0-next.22
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/.turbo/turbo-build.log +16 -9
- package/dist/index.cjs +372 -0
- package/dist/index.d.cts +47 -2
- package/dist/index.d.ts +47 -2
- package/dist/index.js +327 -0
- package/package.json +1 -1
- package/scripts/generator.ts +7 -0
- package/src/index.ts +328 -1
- package/support/api-reference-esm-imports.json +41 -10
- package/support/arcgis.d.ts +1335 -203
- package/src/.gitkeep +0 -0
- package/support/.gitkeep +0 -0
package/support/arcgis.d.ts
CHANGED
|
@@ -1686,6 +1686,65 @@ declare namespace __esri {
|
|
|
1686
1686
|
preserveAspectRatio?: boolean;
|
|
1687
1687
|
}
|
|
1688
1688
|
|
|
1689
|
+
/**
|
|
1690
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1691
|
+
*
|
|
1692
|
+
* Utils for knowledge studio supporting access to utilities shared between Studio and the SDK
|
|
1693
|
+
*/
|
|
1694
|
+
interface generalSharedKgUtils {
|
|
1695
|
+
extentToInBoundsRings(extent: Extent): number[][][];
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
export const generalSharedKgUtils: generalSharedKgUtils;
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1702
|
+
*
|
|
1703
|
+
* Utils for knowledge studio supporting access to internal layer properties needed for in-memory state serialization
|
|
1704
|
+
*/
|
|
1705
|
+
interface layerInternalAccessUtils {
|
|
1706
|
+
getInclusionDefinitionFromLayer(layer: KnowledgeGraphLayer | LinkChartLayer): InclusionModeDefinition;
|
|
1707
|
+
|
|
1708
|
+
removeInclusionDefinitionFromLayer(layer: KnowledgeGraphLayer): void;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export const layerInternalAccessUtils: layerInternalAccessUtils;
|
|
1712
|
+
|
|
1713
|
+
interface resourceSerializationUtils {
|
|
1714
|
+
fetchAndConvertSerializedKnowledgeIdMap(
|
|
1715
|
+
idCollectionsUrl: string,
|
|
1716
|
+
generateAllSublayers?: boolean
|
|
1717
|
+
): Promise<InclusionModeDefinition>;
|
|
1718
|
+
|
|
1719
|
+
fetchAndConvertSerializedLinkChart(
|
|
1720
|
+
serializedResourceURLs: SerializedResourceURLs
|
|
1721
|
+
): Promise<InclusionModeDefinition>;
|
|
1722
|
+
|
|
1723
|
+
serializeInclusionDefinitionToAllPbf(
|
|
1724
|
+
inclusionDefinition: InclusionModeDefinition,
|
|
1725
|
+
kg: KnowledgeGraph,
|
|
1726
|
+
endpointMap: globalThis.Map<string, string[]>
|
|
1727
|
+
): Promise<SerializedFeatureCollections>;
|
|
1728
|
+
|
|
1729
|
+
serializeInclusionDefinitionToIdCollectionsMapPbf(
|
|
1730
|
+
inclusionDefinition: InclusionModeDefinition
|
|
1731
|
+
): Promise<ArrayBuffer>;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
export const resourceSerializationUtils: resourceSerializationUtils;
|
|
1735
|
+
|
|
1736
|
+
export interface SerializedFeatureCollections {
|
|
1737
|
+
entitiesFC: ArrayBuffer;
|
|
1738
|
+
|
|
1739
|
+
relationshipsFC: ArrayBuffer;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
export interface SerializedResourceURLs {
|
|
1743
|
+
entitiesUrl?: string;
|
|
1744
|
+
|
|
1745
|
+
relationshipsUrl?: string;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1689
1748
|
/**
|
|
1690
1749
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1691
1750
|
*
|
|
@@ -20001,6 +20060,28 @@ declare namespace __esri {
|
|
|
20001
20060
|
url?: string;
|
|
20002
20061
|
}
|
|
20003
20062
|
|
|
20063
|
+
interface cypherUtils {
|
|
20064
|
+
getBindParametersFromCypherQuery(query: string): Promise<BindParamsFromCypherQueryResult>;
|
|
20065
|
+
}
|
|
20066
|
+
|
|
20067
|
+
export const cypherUtils: cypherUtils;
|
|
20068
|
+
|
|
20069
|
+
export interface BindParamsFromCypherQueryResult {
|
|
20070
|
+
bindParameters: string[];
|
|
20071
|
+
|
|
20072
|
+
parseErrors: RecognizerError;
|
|
20073
|
+
}
|
|
20074
|
+
|
|
20075
|
+
export interface RecognizerError {
|
|
20076
|
+
line: number;
|
|
20077
|
+
|
|
20078
|
+
column: number;
|
|
20079
|
+
|
|
20080
|
+
msg: string;
|
|
20081
|
+
|
|
20082
|
+
e: any;
|
|
20083
|
+
}
|
|
20084
|
+
|
|
20004
20085
|
export interface KnowledgeGraphSublayer
|
|
20005
20086
|
extends Layer,
|
|
20006
20087
|
BlendLayer,
|
|
@@ -20926,6 +21007,27 @@ declare namespace __esri {
|
|
|
20926
21007
|
supportsCacheHint: boolean;
|
|
20927
21008
|
}
|
|
20928
21009
|
|
|
21010
|
+
interface supportUtils {
|
|
21011
|
+
/**
|
|
21012
|
+
* TODO: remove this method once chron layout overlay handling is migrated to the SDK
|
|
21013
|
+
*
|
|
21014
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-supportUtils.html#getChronologicalOverlay)
|
|
21015
|
+
*/
|
|
21016
|
+
getChronologicalOverlay(linkChartLayer: LinkChartLayer): GraphicsLayer;
|
|
21017
|
+
/**
|
|
21018
|
+
* TODO: remove this method once chron layout overlay handling is migrated to the SDK
|
|
21019
|
+
*
|
|
21020
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-supportUtils.html#getDefaultChronologicalOverlayLayerId)
|
|
21021
|
+
*/
|
|
21022
|
+
getDefaultChronologicalOverlayLayerId(): string;
|
|
21023
|
+
|
|
21024
|
+
getRelationshipEndNodeIds(records: IdTypePair[], kg: KnowledgeGraph): Promise<IdTypePair[]>;
|
|
21025
|
+
|
|
21026
|
+
getRelationshipEndNodeMap(records: IdTypePair[], kg: KnowledgeGraph): Promise<globalThis.Map<string, string[]>>;
|
|
21027
|
+
}
|
|
21028
|
+
|
|
21029
|
+
export const supportUtils: supportUtils;
|
|
21030
|
+
|
|
20929
21031
|
export class KnowledgeGraphLayer extends Layer {
|
|
20930
21032
|
/**
|
|
20931
21033
|
* A KnowledgeGraphLayer is a composite layer that can be created from a [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
|
|
@@ -21097,6 +21199,25 @@ declare namespace __esri {
|
|
|
21097
21199
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#LayerInclusionMemberDefinition)
|
|
21098
21200
|
*/
|
|
21099
21201
|
id: string;
|
|
21202
|
+
/**
|
|
21203
|
+
* The exact point location of the entity on the LinkChart.
|
|
21204
|
+
*
|
|
21205
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#LayerInclusionMemberDefinition)
|
|
21206
|
+
*/
|
|
21207
|
+
linkChartLocation?: Point | OptimizedGeometry;
|
|
21208
|
+
}
|
|
21209
|
+
|
|
21210
|
+
/**
|
|
21211
|
+
* An alternative geometry format for serialized geometries
|
|
21212
|
+
*
|
|
21213
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#OptimizedGeometry)
|
|
21214
|
+
*/
|
|
21215
|
+
export interface OptimizedGeometry {
|
|
21216
|
+
lengths: number[];
|
|
21217
|
+
|
|
21218
|
+
coords: number[];
|
|
21219
|
+
|
|
21220
|
+
hasIndeterminateRingOrder?: boolean;
|
|
21100
21221
|
}
|
|
21101
21222
|
|
|
21102
21223
|
export interface Layer extends Accessor, Loadable, Evented, Identifiable {}
|
|
@@ -21219,7 +21340,8 @@ declare namespace __esri {
|
|
|
21219
21340
|
| "voxel"
|
|
21220
21341
|
| "subtype-group"
|
|
21221
21342
|
| "knowledge-graph"
|
|
21222
|
-
| "knowledge-graph-sublayer"
|
|
21343
|
+
| "knowledge-graph-sublayer"
|
|
21344
|
+
| "link-chart";
|
|
21223
21345
|
/**
|
|
21224
21346
|
* Specifies a fixed [time extent](https://developers.arcgis.com/javascript/latest/api-reference/esri-time-TimeExtent.html) during which a layer should be visible.
|
|
21225
21347
|
*
|
|
@@ -21477,6 +21599,12 @@ declare namespace __esri {
|
|
|
21477
21599
|
|
|
21478
21600
|
constructor(properties?: LinkChartLayerProperties);
|
|
21479
21601
|
|
|
21602
|
+
/**
|
|
21603
|
+
* Sets a default layout configuration for the link chart.
|
|
21604
|
+
*
|
|
21605
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21606
|
+
*/
|
|
21607
|
+
defaultLinkChartConfig: LinkChartLayerDefaultLinkChartConfig;
|
|
21480
21608
|
/**
|
|
21481
21609
|
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21482
21610
|
*
|
|
@@ -21504,6 +21632,12 @@ declare namespace __esri {
|
|
|
21504
21632
|
}
|
|
21505
21633
|
|
|
21506
21634
|
interface LinkChartLayerProperties extends LayerProperties {
|
|
21635
|
+
/**
|
|
21636
|
+
* Sets a default layout configuration for the link chart.
|
|
21637
|
+
*
|
|
21638
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21639
|
+
*/
|
|
21640
|
+
defaultLinkChartConfig?: LinkChartLayerDefaultLinkChartConfig;
|
|
21507
21641
|
/**
|
|
21508
21642
|
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21509
21643
|
*
|
|
@@ -21518,64 +21652,141 @@ declare namespace __esri {
|
|
|
21518
21652
|
url?: string;
|
|
21519
21653
|
}
|
|
21520
21654
|
|
|
21655
|
+
export interface LinkChartLayerChronologicalLayoutSettings {
|
|
21656
|
+
timeDirection?: "right" | "left" | "top" | "bottom";
|
|
21657
|
+
|
|
21658
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
21659
|
+
|
|
21660
|
+
eventsTicksVisualization?: "none" | "start-only" | "start-and-end";
|
|
21661
|
+
|
|
21662
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
21663
|
+
|
|
21664
|
+
durationLineWidth?: number;
|
|
21665
|
+
|
|
21666
|
+
entityPositionAtDurationRatio?: number;
|
|
21667
|
+
|
|
21668
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
21669
|
+
|
|
21670
|
+
separateTimeOverlaps?: boolean;
|
|
21671
|
+
|
|
21672
|
+
separateTimelineOverlaps?: boolean;
|
|
21673
|
+
|
|
21674
|
+
moveFirstBends?: boolean;
|
|
21675
|
+
|
|
21676
|
+
secondBendRatio?: number;
|
|
21677
|
+
|
|
21678
|
+
lineSeparationMultiplier?: number;
|
|
21679
|
+
|
|
21680
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
21681
|
+
|
|
21682
|
+
separatedLineShapeRatio?: number;
|
|
21683
|
+
}
|
|
21684
|
+
|
|
21685
|
+
export interface layersLinkChartLayerChronologicalLayoutSettings {
|
|
21686
|
+
timeDirection?: "right" | "left" | "top" | "bottom";
|
|
21687
|
+
|
|
21688
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
21689
|
+
|
|
21690
|
+
eventsTicksVisualization?: "none" | "start-only" | "start-and-end";
|
|
21691
|
+
|
|
21692
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
21693
|
+
|
|
21694
|
+
durationLineWidth?: number;
|
|
21695
|
+
|
|
21696
|
+
entityPositionAtDurationRatio?: number;
|
|
21697
|
+
|
|
21698
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
21699
|
+
|
|
21700
|
+
separateTimeOverlaps?: boolean;
|
|
21701
|
+
|
|
21702
|
+
separateTimelineOverlaps?: boolean;
|
|
21703
|
+
|
|
21704
|
+
moveFirstBends?: boolean;
|
|
21705
|
+
|
|
21706
|
+
secondBendRatio?: number;
|
|
21707
|
+
|
|
21708
|
+
lineSeparationMultiplier?: number;
|
|
21709
|
+
|
|
21710
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
21711
|
+
|
|
21712
|
+
separatedLineShapeRatio?: number;
|
|
21713
|
+
}
|
|
21714
|
+
|
|
21521
21715
|
/**
|
|
21522
|
-
* Defines
|
|
21716
|
+
* Defines additional settings for layout calculations.
|
|
21523
21717
|
*
|
|
21524
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21718
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21525
21719
|
*/
|
|
21526
|
-
export interface
|
|
21720
|
+
export interface LayoutModeSettings {
|
|
21527
21721
|
/**
|
|
21528
|
-
*
|
|
21722
|
+
* -
|
|
21529
21723
|
*
|
|
21530
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21724
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21531
21725
|
*/
|
|
21532
|
-
|
|
21726
|
+
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
21533
21727
|
/**
|
|
21534
|
-
*
|
|
21728
|
+
* -
|
|
21535
21729
|
*
|
|
21536
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21730
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21537
21731
|
*/
|
|
21538
|
-
|
|
21732
|
+
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
21539
21733
|
}
|
|
21540
21734
|
|
|
21541
|
-
|
|
21542
|
-
* Defines the contents of each specified named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition) and whether all instance of the named type will be used for a specified subset.
|
|
21543
|
-
*
|
|
21544
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
|
|
21545
|
-
*/
|
|
21546
|
-
export interface LinkChartLayerLayerInclusionDefinition {
|
|
21735
|
+
export interface LinkChartLayerDefaultLinkChartConfig {
|
|
21547
21736
|
/**
|
|
21548
|
-
*
|
|
21737
|
+
* The layout mode to be applied by default.
|
|
21549
21738
|
*
|
|
21550
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21739
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21551
21740
|
*/
|
|
21552
|
-
|
|
21741
|
+
layoutMode?:
|
|
21742
|
+
| "RADIAL_TREE"
|
|
21743
|
+
| "GEOGRAPHIC"
|
|
21744
|
+
| "FORCE_DIRECTED"
|
|
21745
|
+
| "COMMUNITY"
|
|
21746
|
+
| "SIMPLE"
|
|
21747
|
+
| "HIERARCHICAL"
|
|
21748
|
+
| "SMART_TREE"
|
|
21749
|
+
| "CHRONOLOGICAL_SINGLE"
|
|
21750
|
+
| "CHRONOLOGICAL_MULTIPLE";
|
|
21553
21751
|
/**
|
|
21554
|
-
*
|
|
21752
|
+
* By default, the layout algorithm is always run on link charts when they are first created.
|
|
21555
21753
|
*
|
|
21556
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21754
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21557
21755
|
*/
|
|
21558
|
-
|
|
21756
|
+
doNotRecalculateLayout?: boolean;
|
|
21757
|
+
/**
|
|
21758
|
+
* Additional layout options for the default layout configuration.
|
|
21759
|
+
*
|
|
21760
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21761
|
+
*/
|
|
21762
|
+
layoutOptions?: LayoutModeSettings;
|
|
21559
21763
|
}
|
|
21560
21764
|
|
|
21561
|
-
|
|
21562
|
-
* Defines the list of `members` for a named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition).
|
|
21563
|
-
*
|
|
21564
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
|
|
21565
|
-
*/
|
|
21566
|
-
export interface LinkChartLayerLayerInclusionMemberDefinition {
|
|
21765
|
+
export interface LinkChartLayerOrganicLayoutSettings {
|
|
21567
21766
|
/**
|
|
21568
|
-
* The
|
|
21767
|
+
* The maximum amount of time in milliseconds to spend on the layout calculation.
|
|
21569
21768
|
*
|
|
21570
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21769
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21571
21770
|
*/
|
|
21572
|
-
|
|
21771
|
+
computationBudgetTime?: number;
|
|
21573
21772
|
/**
|
|
21574
|
-
* The
|
|
21773
|
+
* The value to use for the ideal edge length during calculations.
|
|
21774
|
+
*
|
|
21775
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21776
|
+
*/
|
|
21777
|
+
idealEdgeLength?: number;
|
|
21778
|
+
/**
|
|
21779
|
+
* By default, the replusion radius is automatically calculated to give a reasonable value for each node.
|
|
21575
21780
|
*
|
|
21576
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21781
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21577
21782
|
*/
|
|
21578
|
-
|
|
21783
|
+
repulsionRadiusMultiplier?: number;
|
|
21784
|
+
/**
|
|
21785
|
+
* Whether the ideal edge length provided should be used as a multiplier for the calculated ideal edge length, or an absolute value, in degrees.
|
|
21786
|
+
*
|
|
21787
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21788
|
+
*/
|
|
21789
|
+
idealEdgeLengthType?: "multiplier" | "absoluteValue";
|
|
21579
21790
|
}
|
|
21580
21791
|
|
|
21581
21792
|
export interface MapImageLayer
|
|
@@ -38476,6 +38687,8 @@ declare namespace __esri {
|
|
|
38476
38687
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#opacity)
|
|
38477
38688
|
*/
|
|
38478
38689
|
opacity: number;
|
|
38690
|
+
|
|
38691
|
+
orderBy: SublayerOrderBy[];
|
|
38479
38692
|
/**
|
|
38480
38693
|
* The parent layer to which the sublayer belongs.
|
|
38481
38694
|
*
|
|
@@ -38721,6 +38934,8 @@ declare namespace __esri {
|
|
|
38721
38934
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#opacity)
|
|
38722
38935
|
*/
|
|
38723
38936
|
opacity?: number;
|
|
38937
|
+
|
|
38938
|
+
orderBy?: SublayerOrderByProperties[];
|
|
38724
38939
|
/**
|
|
38725
38940
|
* The parent layer to which the sublayer belongs.
|
|
38726
38941
|
*
|
|
@@ -39029,6 +39244,40 @@ declare namespace __esri {
|
|
|
39029
39244
|
feature: Graphic;
|
|
39030
39245
|
}
|
|
39031
39246
|
|
|
39247
|
+
export interface SublayerOrderByProperties {
|
|
39248
|
+
/**
|
|
39249
|
+
* The number or date field whose values will be used to sort features.
|
|
39250
|
+
*
|
|
39251
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39252
|
+
*/
|
|
39253
|
+
field?: string;
|
|
39254
|
+
/**
|
|
39255
|
+
* The sort order.
|
|
39256
|
+
*
|
|
39257
|
+
* @default ascending
|
|
39258
|
+
*
|
|
39259
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39260
|
+
*/
|
|
39261
|
+
order?: "ascending" | "descending";
|
|
39262
|
+
}
|
|
39263
|
+
|
|
39264
|
+
export interface SublayerOrderBy extends AnonymousAccessor {
|
|
39265
|
+
/**
|
|
39266
|
+
* The number or date field whose values will be used to sort features.
|
|
39267
|
+
*
|
|
39268
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39269
|
+
*/
|
|
39270
|
+
field?: string;
|
|
39271
|
+
/**
|
|
39272
|
+
* The sort order.
|
|
39273
|
+
*
|
|
39274
|
+
* @default ascending
|
|
39275
|
+
*
|
|
39276
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39277
|
+
*/
|
|
39278
|
+
order?: "ascending" | "descending";
|
|
39279
|
+
}
|
|
39280
|
+
|
|
39032
39281
|
export interface SublayerQueryAttachmentsOptions {
|
|
39033
39282
|
/**
|
|
39034
39283
|
* Signal object that can be used to abort the asynchronous task.
|
|
@@ -45931,6 +46180,542 @@ declare namespace __esri {
|
|
|
45931
46180
|
signal?: AbortSignal;
|
|
45932
46181
|
}
|
|
45933
46182
|
|
|
46183
|
+
export interface ChronologicalLayoutSettings extends Accessor, JSONSupport {}
|
|
46184
|
+
|
|
46185
|
+
export class ChronologicalLayoutSettings {
|
|
46186
|
+
/**
|
|
46187
|
+
* Settings for chronological layout calculations.
|
|
46188
|
+
*
|
|
46189
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html)
|
|
46190
|
+
*/
|
|
46191
|
+
|
|
46192
|
+
constructor(properties?: ChronologicalLayoutSettingsProperties);
|
|
46193
|
+
|
|
46194
|
+
/**
|
|
46195
|
+
* An integer between 1 and 10 setting the width of the line, in points, representing the duration of events with non-zero durations.
|
|
46196
|
+
*
|
|
46197
|
+
* @default 5
|
|
46198
|
+
*
|
|
46199
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#durationLineWidth)
|
|
46200
|
+
*/
|
|
46201
|
+
durationLineWidth: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
46202
|
+
/**
|
|
46203
|
+
* Determines the placement of an entity along a non-zero duration event interval.
|
|
46204
|
+
*
|
|
46205
|
+
* @default 1
|
|
46206
|
+
*
|
|
46207
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#entityPositionAtDurationRatio)
|
|
46208
|
+
*/
|
|
46209
|
+
entityPositionAtDurationRatio: number;
|
|
46210
|
+
/**
|
|
46211
|
+
* Controls the display of start and end event ticks on the timeline.
|
|
46212
|
+
*
|
|
46213
|
+
* @default "start-and-end"
|
|
46214
|
+
*
|
|
46215
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#eventsTicksVisualization)
|
|
46216
|
+
*/
|
|
46217
|
+
eventsTicksVisualization: "none" | "start-and-end" | "start-only";
|
|
46218
|
+
/**
|
|
46219
|
+
* The multiplier to be used for line separation, where a higher multiplier leads to greater separation between lines.
|
|
46220
|
+
*
|
|
46221
|
+
* @default 1
|
|
46222
|
+
*
|
|
46223
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#lineSeparationMultiplier)
|
|
46224
|
+
*/
|
|
46225
|
+
lineSeparationMultiplier: number;
|
|
46226
|
+
/**
|
|
46227
|
+
* When 'separateTimeLineOverlaps' is true, indicates whether the first bend on a relationship line related to an event is raised up above the event location, to reduce overlapping.
|
|
46228
|
+
*
|
|
46229
|
+
* @default true
|
|
46230
|
+
*
|
|
46231
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#moveFirstBends)
|
|
46232
|
+
*/
|
|
46233
|
+
moveFirstBends: boolean;
|
|
46234
|
+
/**
|
|
46235
|
+
* Ratio from 0 to 1 controlling the position at which the second bend of a relationship occurs, for event and non-event relationships between event and non-event entities.
|
|
46236
|
+
*
|
|
46237
|
+
* @default 0.3
|
|
46238
|
+
*
|
|
46239
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#secondBendRatio)
|
|
46240
|
+
*/
|
|
46241
|
+
secondBendRatio: number;
|
|
46242
|
+
/**
|
|
46243
|
+
* When 'separateTimeOverlaps' is true, adjusts the angle between the extremities of the original and separated lines.
|
|
46244
|
+
*
|
|
46245
|
+
* @default 0
|
|
46246
|
+
*
|
|
46247
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separatedLineShapeRatio)
|
|
46248
|
+
*/
|
|
46249
|
+
separatedLineShapeRatio: number;
|
|
46250
|
+
/**
|
|
46251
|
+
* Indicates whether events that overlap on a timeline are separated.
|
|
46252
|
+
*
|
|
46253
|
+
* @default true
|
|
46254
|
+
*
|
|
46255
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimelineOverlaps)
|
|
46256
|
+
*/
|
|
46257
|
+
separateTimelineOverlaps: boolean;
|
|
46258
|
+
/**
|
|
46259
|
+
* Indicates whether events that overlap in time are separated.
|
|
46260
|
+
*
|
|
46261
|
+
* @default true
|
|
46262
|
+
*
|
|
46263
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimeOverlaps)
|
|
46264
|
+
*/
|
|
46265
|
+
separateTimeOverlaps: boolean;
|
|
46266
|
+
/**
|
|
46267
|
+
* Determines whether or not lines representing the duration of events on entities with non-zero durations are shown.
|
|
46268
|
+
*
|
|
46269
|
+
* @default false
|
|
46270
|
+
*
|
|
46271
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showDurationLineForNonZeroDurationEntityEvents)
|
|
46272
|
+
*/
|
|
46273
|
+
showDurationLineForNonZeroDurationEntityEvents: boolean;
|
|
46274
|
+
/**
|
|
46275
|
+
* Determines whether to display interval bounds (tick lines at the start and end) of relationship lines for events with non-zero durations.
|
|
46276
|
+
*
|
|
46277
|
+
* @default false
|
|
46278
|
+
*
|
|
46279
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showNonZeroDurationIntervalBounds)
|
|
46280
|
+
*/
|
|
46281
|
+
showNonZeroDurationIntervalBounds: boolean;
|
|
46282
|
+
/**
|
|
46283
|
+
* Determines whether or not to space separated lines evenly, when either 'separateTimeOverlaps' or 'separateTimelineOverlaps' is true.
|
|
46284
|
+
*
|
|
46285
|
+
* @default false
|
|
46286
|
+
*
|
|
46287
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#spaceSeparatedLinesEvenly)
|
|
46288
|
+
*/
|
|
46289
|
+
spaceSeparatedLinesEvenly: boolean;
|
|
46290
|
+
/**
|
|
46291
|
+
* The UTC offset in minutes to use for the time banner.
|
|
46292
|
+
*
|
|
46293
|
+
* @default 0
|
|
46294
|
+
*
|
|
46295
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeBannerUTCOffsetInMinutes)
|
|
46296
|
+
*/
|
|
46297
|
+
timeBannerUTCOffsetInMinutes: number;
|
|
46298
|
+
/**
|
|
46299
|
+
* Controls the time axis orientation and the direction along which time increases in the layout, e.g.
|
|
46300
|
+
*
|
|
46301
|
+
* @default "right"
|
|
46302
|
+
*
|
|
46303
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeDirection)
|
|
46304
|
+
*/
|
|
46305
|
+
timeDirection: "bottom" | "left" | "right" | "top";
|
|
46306
|
+
/**
|
|
46307
|
+
* Determines whether or not to use Bezier curves for separated lines.
|
|
46308
|
+
*
|
|
46309
|
+
* @default false
|
|
46310
|
+
*
|
|
46311
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#useBezierCurves)
|
|
46312
|
+
*/
|
|
46313
|
+
useBezierCurves: boolean;
|
|
46314
|
+
|
|
46315
|
+
static fromJSON(json: any): ChronologicalLayoutSettings;
|
|
46316
|
+
}
|
|
46317
|
+
|
|
46318
|
+
interface ChronologicalLayoutSettingsProperties {
|
|
46319
|
+
/**
|
|
46320
|
+
* An integer between 1 and 10 setting the width of the line, in points, representing the duration of events with non-zero durations.
|
|
46321
|
+
*
|
|
46322
|
+
* @default 5
|
|
46323
|
+
*
|
|
46324
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#durationLineWidth)
|
|
46325
|
+
*/
|
|
46326
|
+
durationLineWidth?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
46327
|
+
/**
|
|
46328
|
+
* Determines the placement of an entity along a non-zero duration event interval.
|
|
46329
|
+
*
|
|
46330
|
+
* @default 1
|
|
46331
|
+
*
|
|
46332
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#entityPositionAtDurationRatio)
|
|
46333
|
+
*/
|
|
46334
|
+
entityPositionAtDurationRatio?: number;
|
|
46335
|
+
/**
|
|
46336
|
+
* Controls the display of start and end event ticks on the timeline.
|
|
46337
|
+
*
|
|
46338
|
+
* @default "start-and-end"
|
|
46339
|
+
*
|
|
46340
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#eventsTicksVisualization)
|
|
46341
|
+
*/
|
|
46342
|
+
eventsTicksVisualization?: "none" | "start-and-end" | "start-only";
|
|
46343
|
+
/**
|
|
46344
|
+
* The multiplier to be used for line separation, where a higher multiplier leads to greater separation between lines.
|
|
46345
|
+
*
|
|
46346
|
+
* @default 1
|
|
46347
|
+
*
|
|
46348
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#lineSeparationMultiplier)
|
|
46349
|
+
*/
|
|
46350
|
+
lineSeparationMultiplier?: number;
|
|
46351
|
+
/**
|
|
46352
|
+
* When 'separateTimeLineOverlaps' is true, indicates whether the first bend on a relationship line related to an event is raised up above the event location, to reduce overlapping.
|
|
46353
|
+
*
|
|
46354
|
+
* @default true
|
|
46355
|
+
*
|
|
46356
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#moveFirstBends)
|
|
46357
|
+
*/
|
|
46358
|
+
moveFirstBends?: boolean;
|
|
46359
|
+
/**
|
|
46360
|
+
* Ratio from 0 to 1 controlling the position at which the second bend of a relationship occurs, for event and non-event relationships between event and non-event entities.
|
|
46361
|
+
*
|
|
46362
|
+
* @default 0.3
|
|
46363
|
+
*
|
|
46364
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#secondBendRatio)
|
|
46365
|
+
*/
|
|
46366
|
+
secondBendRatio?: number;
|
|
46367
|
+
/**
|
|
46368
|
+
* When 'separateTimeOverlaps' is true, adjusts the angle between the extremities of the original and separated lines.
|
|
46369
|
+
*
|
|
46370
|
+
* @default 0
|
|
46371
|
+
*
|
|
46372
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separatedLineShapeRatio)
|
|
46373
|
+
*/
|
|
46374
|
+
separatedLineShapeRatio?: number;
|
|
46375
|
+
/**
|
|
46376
|
+
* Indicates whether events that overlap on a timeline are separated.
|
|
46377
|
+
*
|
|
46378
|
+
* @default true
|
|
46379
|
+
*
|
|
46380
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimelineOverlaps)
|
|
46381
|
+
*/
|
|
46382
|
+
separateTimelineOverlaps?: boolean;
|
|
46383
|
+
/**
|
|
46384
|
+
* Indicates whether events that overlap in time are separated.
|
|
46385
|
+
*
|
|
46386
|
+
* @default true
|
|
46387
|
+
*
|
|
46388
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimeOverlaps)
|
|
46389
|
+
*/
|
|
46390
|
+
separateTimeOverlaps?: boolean;
|
|
46391
|
+
/**
|
|
46392
|
+
* Determines whether or not lines representing the duration of events on entities with non-zero durations are shown.
|
|
46393
|
+
*
|
|
46394
|
+
* @default false
|
|
46395
|
+
*
|
|
46396
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showDurationLineForNonZeroDurationEntityEvents)
|
|
46397
|
+
*/
|
|
46398
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
46399
|
+
/**
|
|
46400
|
+
* Determines whether to display interval bounds (tick lines at the start and end) of relationship lines for events with non-zero durations.
|
|
46401
|
+
*
|
|
46402
|
+
* @default false
|
|
46403
|
+
*
|
|
46404
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showNonZeroDurationIntervalBounds)
|
|
46405
|
+
*/
|
|
46406
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
46407
|
+
/**
|
|
46408
|
+
* Determines whether or not to space separated lines evenly, when either 'separateTimeOverlaps' or 'separateTimelineOverlaps' is true.
|
|
46409
|
+
*
|
|
46410
|
+
* @default false
|
|
46411
|
+
*
|
|
46412
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#spaceSeparatedLinesEvenly)
|
|
46413
|
+
*/
|
|
46414
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
46415
|
+
/**
|
|
46416
|
+
* The UTC offset in minutes to use for the time banner.
|
|
46417
|
+
*
|
|
46418
|
+
* @default 0
|
|
46419
|
+
*
|
|
46420
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeBannerUTCOffsetInMinutes)
|
|
46421
|
+
*/
|
|
46422
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
46423
|
+
/**
|
|
46424
|
+
* Controls the time axis orientation and the direction along which time increases in the layout, e.g.
|
|
46425
|
+
*
|
|
46426
|
+
* @default "right"
|
|
46427
|
+
*
|
|
46428
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeDirection)
|
|
46429
|
+
*/
|
|
46430
|
+
timeDirection?: "bottom" | "left" | "right" | "top";
|
|
46431
|
+
/**
|
|
46432
|
+
* Determines whether or not to use Bezier curves for separated lines.
|
|
46433
|
+
*
|
|
46434
|
+
* @default false
|
|
46435
|
+
*
|
|
46436
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#useBezierCurves)
|
|
46437
|
+
*/
|
|
46438
|
+
useBezierCurves?: boolean;
|
|
46439
|
+
}
|
|
46440
|
+
|
|
46441
|
+
export interface LayoutSettings extends Accessor, JSONSupport {}
|
|
46442
|
+
|
|
46443
|
+
export class LayoutSettings {
|
|
46444
|
+
/**
|
|
46445
|
+
* Settings for link chart layouts.
|
|
46446
|
+
*
|
|
46447
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html)
|
|
46448
|
+
*/
|
|
46449
|
+
|
|
46450
|
+
constructor(properties?: LayoutSettingsProperties);
|
|
46451
|
+
|
|
46452
|
+
/**
|
|
46453
|
+
* Settings for chronological layout calculations.
|
|
46454
|
+
*
|
|
46455
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#chronologicalLayoutSettings)
|
|
46456
|
+
*/
|
|
46457
|
+
chronologicalLayoutSettings: ChronologicalLayoutSettings;
|
|
46458
|
+
/**
|
|
46459
|
+
* Settings for organic layout calculations.
|
|
46460
|
+
*
|
|
46461
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#organicLayoutSettings)
|
|
46462
|
+
*/
|
|
46463
|
+
organicLayoutSettings: OrganicLayoutSettings;
|
|
46464
|
+
|
|
46465
|
+
static fromJSON(json: any): LayoutSettings;
|
|
46466
|
+
}
|
|
46467
|
+
|
|
46468
|
+
interface LayoutSettingsProperties {
|
|
46469
|
+
/**
|
|
46470
|
+
* Settings for chronological layout calculations.
|
|
46471
|
+
*
|
|
46472
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#chronologicalLayoutSettings)
|
|
46473
|
+
*/
|
|
46474
|
+
chronologicalLayoutSettings?: ChronologicalLayoutSettingsProperties;
|
|
46475
|
+
/**
|
|
46476
|
+
* Settings for organic layout calculations.
|
|
46477
|
+
*
|
|
46478
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#organicLayoutSettings)
|
|
46479
|
+
*/
|
|
46480
|
+
organicLayoutSettings?: OrganicLayoutSettingsProperties;
|
|
46481
|
+
}
|
|
46482
|
+
|
|
46483
|
+
export class LinkChartProperties extends Accessor {
|
|
46484
|
+
/**
|
|
46485
|
+
* Properties that contain source information, layout configurations and other settings for a Link chart.
|
|
46486
|
+
*
|
|
46487
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html)
|
|
46488
|
+
*/
|
|
46489
|
+
|
|
46490
|
+
constructor(properties?: LinkChartPropertiesProperties);
|
|
46491
|
+
|
|
46492
|
+
/**
|
|
46493
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46494
|
+
*
|
|
46495
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#entitiesUrl)
|
|
46496
|
+
*/
|
|
46497
|
+
entitiesUrl: string;
|
|
46498
|
+
/**
|
|
46499
|
+
* Settings for link chart layouts.
|
|
46500
|
+
*
|
|
46501
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutSettings)
|
|
46502
|
+
*/
|
|
46503
|
+
layoutSettings: LayoutSettings;
|
|
46504
|
+
/**
|
|
46505
|
+
* The link chart layout algorithm used to position entitites and relationships on the link chart.
|
|
46506
|
+
*
|
|
46507
|
+
* @default "organic-standard"
|
|
46508
|
+
*
|
|
46509
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutType)
|
|
46510
|
+
*/
|
|
46511
|
+
layoutType:
|
|
46512
|
+
| "basic-grid"
|
|
46513
|
+
| "chronological-mono-timeline"
|
|
46514
|
+
| "chronological-multi-timeline"
|
|
46515
|
+
| "geographic-organic-standard"
|
|
46516
|
+
| "hierarchical-bottom-to-top"
|
|
46517
|
+
| "hierarchical-top-to-bottom"
|
|
46518
|
+
| "organic-community"
|
|
46519
|
+
| "organic-fusiform"
|
|
46520
|
+
| "organic-leaf-circle"
|
|
46521
|
+
| "organic-standard"
|
|
46522
|
+
| "radial-node-centric"
|
|
46523
|
+
| "radial-root-centric"
|
|
46524
|
+
| "tree-bottom-to-top"
|
|
46525
|
+
| "tree-left-to-right"
|
|
46526
|
+
| "tree-right-to-left"
|
|
46527
|
+
| "tree-top-to-bottom";
|
|
46528
|
+
/**
|
|
46529
|
+
* Object that defines instructions on the visualization of nonspatial link chart data.
|
|
46530
|
+
*
|
|
46531
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#nonspatialDataDisplay)
|
|
46532
|
+
*/
|
|
46533
|
+
nonspatialDataDisplay: NonspatialDataDisplay;
|
|
46534
|
+
/**
|
|
46535
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46536
|
+
*
|
|
46537
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#relationshipsUrl)
|
|
46538
|
+
*/
|
|
46539
|
+
relationshipsUrl: string;
|
|
46540
|
+
}
|
|
46541
|
+
|
|
46542
|
+
interface LinkChartPropertiesProperties {
|
|
46543
|
+
/**
|
|
46544
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46545
|
+
*
|
|
46546
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#entitiesUrl)
|
|
46547
|
+
*/
|
|
46548
|
+
entitiesUrl?: string;
|
|
46549
|
+
/**
|
|
46550
|
+
* Settings for link chart layouts.
|
|
46551
|
+
*
|
|
46552
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutSettings)
|
|
46553
|
+
*/
|
|
46554
|
+
layoutSettings?: LayoutSettingsProperties;
|
|
46555
|
+
/**
|
|
46556
|
+
* The link chart layout algorithm used to position entitites and relationships on the link chart.
|
|
46557
|
+
*
|
|
46558
|
+
* @default "organic-standard"
|
|
46559
|
+
*
|
|
46560
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutType)
|
|
46561
|
+
*/
|
|
46562
|
+
layoutType?:
|
|
46563
|
+
| "basic-grid"
|
|
46564
|
+
| "chronological-mono-timeline"
|
|
46565
|
+
| "chronological-multi-timeline"
|
|
46566
|
+
| "geographic-organic-standard"
|
|
46567
|
+
| "hierarchical-bottom-to-top"
|
|
46568
|
+
| "hierarchical-top-to-bottom"
|
|
46569
|
+
| "organic-community"
|
|
46570
|
+
| "organic-fusiform"
|
|
46571
|
+
| "organic-leaf-circle"
|
|
46572
|
+
| "organic-standard"
|
|
46573
|
+
| "radial-node-centric"
|
|
46574
|
+
| "radial-root-centric"
|
|
46575
|
+
| "tree-bottom-to-top"
|
|
46576
|
+
| "tree-left-to-right"
|
|
46577
|
+
| "tree-right-to-left"
|
|
46578
|
+
| "tree-top-to-bottom";
|
|
46579
|
+
/**
|
|
46580
|
+
* Object that defines instructions on the visualization of nonspatial link chart data.
|
|
46581
|
+
*
|
|
46582
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#nonspatialDataDisplay)
|
|
46583
|
+
*/
|
|
46584
|
+
nonspatialDataDisplay?: NonspatialDataDisplayProperties;
|
|
46585
|
+
/**
|
|
46586
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46587
|
+
*
|
|
46588
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#relationshipsUrl)
|
|
46589
|
+
*/
|
|
46590
|
+
relationshipsUrl?: string;
|
|
46591
|
+
}
|
|
46592
|
+
|
|
46593
|
+
export interface NonspatialDataDisplay extends Accessor, JSONSupport {}
|
|
46594
|
+
|
|
46595
|
+
export class NonspatialDataDisplay {
|
|
46596
|
+
constructor(properties?: NonspatialDataDisplayProperties);
|
|
46597
|
+
|
|
46598
|
+
/**
|
|
46599
|
+
* Category of how nonspatial information should be displayed.
|
|
46600
|
+
*
|
|
46601
|
+
* @default "visible"
|
|
46602
|
+
*
|
|
46603
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-NonspatialDataDisplay.html#mode)
|
|
46604
|
+
*/
|
|
46605
|
+
mode: "hidden" | "visible";
|
|
46606
|
+
|
|
46607
|
+
static fromJSON(json: any): NonspatialDataDisplay;
|
|
46608
|
+
}
|
|
46609
|
+
|
|
46610
|
+
interface NonspatialDataDisplayProperties {
|
|
46611
|
+
/**
|
|
46612
|
+
* Category of how nonspatial information should be displayed.
|
|
46613
|
+
*
|
|
46614
|
+
* @default "visible"
|
|
46615
|
+
*
|
|
46616
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-NonspatialDataDisplay.html#mode)
|
|
46617
|
+
*/
|
|
46618
|
+
mode?: "hidden" | "visible";
|
|
46619
|
+
}
|
|
46620
|
+
|
|
46621
|
+
export interface OrganicLayoutSettings extends Accessor, JSONSupport {}
|
|
46622
|
+
|
|
46623
|
+
export class OrganicLayoutSettings {
|
|
46624
|
+
/**
|
|
46625
|
+
* Settings for organic layout calculations.
|
|
46626
|
+
*
|
|
46627
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html)
|
|
46628
|
+
*/
|
|
46629
|
+
|
|
46630
|
+
constructor(properties?: OrganicLayoutSettingsProperties);
|
|
46631
|
+
|
|
46632
|
+
/**
|
|
46633
|
+
* The value, in degrees, to use for the ideal edge length during layout calculations when the idealEdgeLengthType is 'absolute-value'.
|
|
46634
|
+
*
|
|
46635
|
+
* @default 1
|
|
46636
|
+
*
|
|
46637
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#absoluteIdealEdgeLength)
|
|
46638
|
+
*/
|
|
46639
|
+
absoluteIdealEdgeLength: number;
|
|
46640
|
+
/**
|
|
46641
|
+
* Determines whether the repulsion radius should be calculated automatically (true), or computed according to 'repulsionRadiusMultiplier' (false).
|
|
46642
|
+
*
|
|
46643
|
+
* @default true
|
|
46644
|
+
*
|
|
46645
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#autoRepulsionRadius)
|
|
46646
|
+
*/
|
|
46647
|
+
autoRepulsionRadius: boolean;
|
|
46648
|
+
/**
|
|
46649
|
+
* Determines which property to use to compute the ideal edge length.
|
|
46650
|
+
*
|
|
46651
|
+
* @default "multiplier"
|
|
46652
|
+
*
|
|
46653
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType)
|
|
46654
|
+
*/
|
|
46655
|
+
idealEdgeLengthType: "absolute-value" | "multiplier";
|
|
46656
|
+
/**
|
|
46657
|
+
* Value used to multiply the default edge length to determine the ideal edge length during layout calculations, when the [idealEdgeLengthType](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType) is 'multiplier'.
|
|
46658
|
+
*
|
|
46659
|
+
* @default 1
|
|
46660
|
+
*
|
|
46661
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#multiplicativeIdealEdgeLength)
|
|
46662
|
+
*/
|
|
46663
|
+
multiplicativeIdealEdgeLength: number;
|
|
46664
|
+
/**
|
|
46665
|
+
* Value to be used for the repulsion radius multiplier in organic layout calculations.
|
|
46666
|
+
*
|
|
46667
|
+
* @default 1
|
|
46668
|
+
*
|
|
46669
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#repulsionRadiusMultiplier)
|
|
46670
|
+
*/
|
|
46671
|
+
repulsionRadiusMultiplier: number | any;
|
|
46672
|
+
|
|
46673
|
+
static fromJSON(json: any): OrganicLayoutSettings;
|
|
46674
|
+
}
|
|
46675
|
+
|
|
46676
|
+
interface OrganicLayoutSettingsProperties {
|
|
46677
|
+
/**
|
|
46678
|
+
* The value, in degrees, to use for the ideal edge length during layout calculations when the idealEdgeLengthType is 'absolute-value'.
|
|
46679
|
+
*
|
|
46680
|
+
* @default 1
|
|
46681
|
+
*
|
|
46682
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#absoluteIdealEdgeLength)
|
|
46683
|
+
*/
|
|
46684
|
+
absoluteIdealEdgeLength?: number;
|
|
46685
|
+
/**
|
|
46686
|
+
* Determines whether the repulsion radius should be calculated automatically (true), or computed according to 'repulsionRadiusMultiplier' (false).
|
|
46687
|
+
*
|
|
46688
|
+
* @default true
|
|
46689
|
+
*
|
|
46690
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#autoRepulsionRadius)
|
|
46691
|
+
*/
|
|
46692
|
+
autoRepulsionRadius?: boolean;
|
|
46693
|
+
/**
|
|
46694
|
+
* Determines which property to use to compute the ideal edge length.
|
|
46695
|
+
*
|
|
46696
|
+
* @default "multiplier"
|
|
46697
|
+
*
|
|
46698
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType)
|
|
46699
|
+
*/
|
|
46700
|
+
idealEdgeLengthType?: "absolute-value" | "multiplier";
|
|
46701
|
+
/**
|
|
46702
|
+
* Value used to multiply the default edge length to determine the ideal edge length during layout calculations, when the [idealEdgeLengthType](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType) is 'multiplier'.
|
|
46703
|
+
*
|
|
46704
|
+
* @default 1
|
|
46705
|
+
*
|
|
46706
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#multiplicativeIdealEdgeLength)
|
|
46707
|
+
*/
|
|
46708
|
+
multiplicativeIdealEdgeLength?: number;
|
|
46709
|
+
/**
|
|
46710
|
+
* Value to be used for the repulsion radius multiplier in organic layout calculations.
|
|
46711
|
+
*
|
|
46712
|
+
* @default 1
|
|
46713
|
+
*
|
|
46714
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#repulsionRadiusMultiplier)
|
|
46715
|
+
*/
|
|
46716
|
+
repulsionRadiusMultiplier?: number | any;
|
|
46717
|
+
}
|
|
46718
|
+
|
|
45934
46719
|
export interface Map extends Accessor, LayersMixin, TablesMixin {}
|
|
45935
46720
|
|
|
45936
46721
|
export class Map {
|
|
@@ -47082,6 +47867,12 @@ declare namespace __esri {
|
|
|
47082
47867
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-networks-UtilityNetwork.html#getTierNames)
|
|
47083
47868
|
*/
|
|
47084
47869
|
getTierNames(domainNetworkName: string): string[];
|
|
47870
|
+
/**
|
|
47871
|
+
* Returns a boolean indicating if the layer is a utility layer belonging to the network.
|
|
47872
|
+
*
|
|
47873
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-networks-UtilityNetwork.html#isUtilityLayer)
|
|
47874
|
+
*/
|
|
47875
|
+
isUtilityLayer(layer: any | any): boolean;
|
|
47085
47876
|
/**
|
|
47086
47877
|
* Returns all associations filtered by the [QueryAssociationsParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-support-QueryAssociationsParameters.html) in a utility network.
|
|
47087
47878
|
*
|
|
@@ -58444,6 +59235,12 @@ declare namespace __esri {
|
|
|
58444
59235
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html#metaEntityTypes)
|
|
58445
59236
|
*/
|
|
58446
59237
|
readonly metaEntityTypes: EntityType[];
|
|
59238
|
+
/**
|
|
59239
|
+
* A list of the provenance source type values and their behaviors in the knowledge graph.
|
|
59240
|
+
*
|
|
59241
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html#provenanceSourceTypeValues)
|
|
59242
|
+
*/
|
|
59243
|
+
readonly provenanceSourceTypeValues: SourceTypeValueBehavior[];
|
|
58447
59244
|
/**
|
|
58448
59245
|
* A list of the [relationship types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-RelationshipType.html) in the knowledge graph including their associated properties.
|
|
58449
59246
|
*
|
|
@@ -59394,6 +60191,24 @@ declare namespace __esri {
|
|
|
59394
60191
|
|
|
59395
60192
|
export type GraphAnyValue = Path | GraphObject | Geometry | Date | string | number | GraphAnyValue[];
|
|
59396
60193
|
|
|
60194
|
+
export class GraphQueryResultHeader extends Accessor {
|
|
60195
|
+
constructor(properties?: GraphQueryResultHeaderProperties);
|
|
60196
|
+
|
|
60197
|
+
exceededTransferLimit: boolean;
|
|
60198
|
+
|
|
60199
|
+
headerKeys: string[];
|
|
60200
|
+
|
|
60201
|
+
outSpatialReference: any;
|
|
60202
|
+
}
|
|
60203
|
+
|
|
60204
|
+
interface GraphQueryResultHeaderProperties {
|
|
60205
|
+
exceededTransferLimit?: boolean;
|
|
60206
|
+
|
|
60207
|
+
headerKeys?: string[];
|
|
60208
|
+
|
|
60209
|
+
outSpatialReference?: any;
|
|
60210
|
+
}
|
|
60211
|
+
|
|
59397
60212
|
export class GraphQueryStreaming extends GraphQuery {
|
|
59398
60213
|
/**
|
|
59399
60214
|
* Defines a streaming query operation performed on a [knowledge graph service's](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html) [graph](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-KnowledgeGraph.html) resource.
|
|
@@ -60261,6 +61076,35 @@ declare namespace __esri {
|
|
|
60261
61076
|
allowLeadingWildcardQueries: boolean;
|
|
60262
61077
|
}
|
|
60263
61078
|
|
|
61079
|
+
export interface SourceTypeValueBehavior extends Accessor, JSONSupport {}
|
|
61080
|
+
|
|
61081
|
+
export class SourceTypeValueBehavior {
|
|
61082
|
+
/**
|
|
61083
|
+
* An entity type defines a homogeneous collection of [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) with a common set of properties and a spatial feature type.
|
|
61084
|
+
*
|
|
61085
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html)
|
|
61086
|
+
*/
|
|
61087
|
+
|
|
61088
|
+
constructor(properties?: SourceTypeValueBehaviorProperties);
|
|
61089
|
+
|
|
61090
|
+
/**
|
|
61091
|
+
* Specifies the behavior from ('URL', 'String', or 'Document') of the source type value.
|
|
61092
|
+
*
|
|
61093
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html#behavior)
|
|
61094
|
+
*/
|
|
61095
|
+
readonly behavior: string;
|
|
61096
|
+
/**
|
|
61097
|
+
* Specifies the source type value.
|
|
61098
|
+
*
|
|
61099
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html#value)
|
|
61100
|
+
*/
|
|
61101
|
+
readonly value: string;
|
|
61102
|
+
|
|
61103
|
+
static fromJSON(json: any): SourceTypeValueBehavior;
|
|
61104
|
+
}
|
|
61105
|
+
|
|
61106
|
+
interface SourceTypeValueBehaviorProperties {}
|
|
61107
|
+
|
|
60264
61108
|
/**
|
|
60265
61109
|
* A knowledge graph service is associated with several resources.
|
|
60266
61110
|
*
|
|
@@ -60317,6 +61161,16 @@ declare namespace __esri {
|
|
|
60317
61161
|
searchArguments: GraphSearchStreaming,
|
|
60318
61162
|
requestOptions?: any
|
|
60319
61163
|
): Promise<GraphQueryStreamingResult>;
|
|
61164
|
+
/**
|
|
61165
|
+
* Retrieves the specified client data keys from the knowledge graph service associated with the given knowledge graph, if they exist.
|
|
61166
|
+
*
|
|
61167
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61168
|
+
*/
|
|
61169
|
+
fetchClientDataAtKeys(
|
|
61170
|
+
graph: KnowledgeGraph,
|
|
61171
|
+
keysToFetch: string[],
|
|
61172
|
+
options?: knowledgeGraphServiceFetchClientDataAtKeysOptions
|
|
61173
|
+
): Promise<globalThis.Map<string, string>>;
|
|
60320
61174
|
/**
|
|
60321
61175
|
* Retrieves the knowledge graph service based on the URL provided.
|
|
60322
61176
|
*
|
|
@@ -60333,6 +61187,21 @@ declare namespace __esri {
|
|
|
60333
61187
|
|
|
60334
61188
|
export const knowledgeGraphService: knowledgeGraphService;
|
|
60335
61189
|
|
|
61190
|
+
export interface knowledgeGraphServiceFetchClientDataAtKeysOptions {
|
|
61191
|
+
/**
|
|
61192
|
+
* By default, client data requests are cached by their version.
|
|
61193
|
+
*
|
|
61194
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61195
|
+
*/
|
|
61196
|
+
ignoreCache?: boolean;
|
|
61197
|
+
/**
|
|
61198
|
+
* Additional options to be used for the data request.
|
|
61199
|
+
*
|
|
61200
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61201
|
+
*/
|
|
61202
|
+
requestOptions?: RequestOptions;
|
|
61203
|
+
}
|
|
61204
|
+
|
|
60336
61205
|
/**
|
|
60337
61206
|
* A convenience module for importing [locator](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-locator.html) functions when developing with [TypeScript](https://developers.arcgis.com/javascript/latest/typescript-setup/).
|
|
60338
61207
|
*
|
|
@@ -75294,7 +76163,7 @@ declare namespace __esri {
|
|
|
75294
76163
|
*
|
|
75295
76164
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-support-utils.html)
|
|
75296
76165
|
*/
|
|
75297
|
-
interface
|
|
76166
|
+
interface rasterSupportUtils {
|
|
75298
76167
|
/**
|
|
75299
76168
|
* Returns default band ids used by a multispectral imagery layer when using a raster [rgb](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-rgb.html) or [stretch](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-stretch.html) renderer.
|
|
75300
76169
|
*
|
|
@@ -75309,7 +76178,7 @@ declare namespace __esri {
|
|
|
75309
76178
|
getSupportedRendererInfo(params: utilsGetSupportedRendererInfoParams): Promise<SupportedRendererInfo>;
|
|
75310
76179
|
}
|
|
75311
76180
|
|
|
75312
|
-
export const
|
|
76181
|
+
export const rasterSupportUtils: rasterSupportUtils;
|
|
75313
76182
|
|
|
75314
76183
|
/**
|
|
75315
76184
|
* The result object of the [getSupportedRendererInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-support-utils.html#getSupportedRendererInfo) method.
|
|
@@ -103185,9 +104054,101 @@ declare namespace __esri {
|
|
|
103185
104054
|
*/
|
|
103186
104055
|
|
|
103187
104056
|
constructor(properties?: WebLinkChartProperties);
|
|
104057
|
+
|
|
104058
|
+
/**
|
|
104059
|
+
* The active [link chart layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html).
|
|
104060
|
+
*
|
|
104061
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#activeLinkChartLayer)
|
|
104062
|
+
*/
|
|
104063
|
+
readonly activeLinkChartLayer: LinkChartLayer;
|
|
104064
|
+
|
|
104065
|
+
readonly diagramNodesExtent: Extent;
|
|
104066
|
+
|
|
104067
|
+
entityCount: number;
|
|
104068
|
+
|
|
104069
|
+
knowledgeGraph: KnowledgeGraph;
|
|
104070
|
+
/**
|
|
104071
|
+
* Properties specific to the link chart.
|
|
104072
|
+
*
|
|
104073
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104074
|
+
*/
|
|
104075
|
+
linkChartProperties: LinkChartProperties;
|
|
104076
|
+
/**
|
|
104077
|
+
* The map type.
|
|
104078
|
+
*
|
|
104079
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104080
|
+
*/
|
|
104081
|
+
mapType: "webLinkChart";
|
|
104082
|
+
|
|
104083
|
+
relationshipCount: number;
|
|
104084
|
+
|
|
104085
|
+
addRecords(records: IdTypePair[]): Promise<void>;
|
|
104086
|
+
|
|
104087
|
+
applyLayout(
|
|
104088
|
+
layoutMode:
|
|
104089
|
+
| "RADIAL_TREE"
|
|
104090
|
+
| "GEOGRAPHIC"
|
|
104091
|
+
| "FORCE_DIRECTED"
|
|
104092
|
+
| "COMMUNITY"
|
|
104093
|
+
| "SIMPLE"
|
|
104094
|
+
| "HIERARCHICAL"
|
|
104095
|
+
| "SMART_TREE"
|
|
104096
|
+
| "CHRONOLOGICAL_SINGLE"
|
|
104097
|
+
| "CHRONOLOGICAL_MULTIPLE",
|
|
104098
|
+
options?: ApplyNewLayoutOptions
|
|
104099
|
+
): Promise<void>;
|
|
104100
|
+
|
|
104101
|
+
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
104102
|
+
|
|
104103
|
+
connectBetweenEntities(entityIds: string[]): IdTypePair[];
|
|
104104
|
+
|
|
104105
|
+
connectFromEntities(entityIds: string[]): IdTypePair[];
|
|
104106
|
+
/**
|
|
104107
|
+
* todo: more doc description
|
|
104108
|
+
*
|
|
104109
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand)
|
|
104110
|
+
*/
|
|
104111
|
+
expand(nodeIds: string[], relationshipTypeNames?: string[]): IdTypePair[];
|
|
104112
|
+
|
|
104113
|
+
getMemberIdsByType(typeName: string): string[];
|
|
104114
|
+
|
|
104115
|
+
refreshLinkChartData(ids?: string[]): Promise<void>;
|
|
104116
|
+
|
|
104117
|
+
removeRecords(records: IdTypePair[]): Promise<void>;
|
|
103188
104118
|
}
|
|
103189
104119
|
|
|
103190
|
-
interface WebLinkChartProperties extends WebDocument2DProperties {
|
|
104120
|
+
interface WebLinkChartProperties extends WebDocument2DProperties {
|
|
104121
|
+
entityCount?: number;
|
|
104122
|
+
|
|
104123
|
+
knowledgeGraph?: KnowledgeGraphProperties;
|
|
104124
|
+
/**
|
|
104125
|
+
* Properties specific to the link chart.
|
|
104126
|
+
*
|
|
104127
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104128
|
+
*/
|
|
104129
|
+
linkChartProperties?: LinkChartPropertiesProperties;
|
|
104130
|
+
/**
|
|
104131
|
+
* The map type.
|
|
104132
|
+
*
|
|
104133
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104134
|
+
*/
|
|
104135
|
+
mapType?: "webLinkChart";
|
|
104136
|
+
|
|
104137
|
+
relationshipCount?: number;
|
|
104138
|
+
}
|
|
104139
|
+
|
|
104140
|
+
export interface ApplyNewLayoutOptions {
|
|
104141
|
+
/**
|
|
104142
|
+
* A map of node IDs to their locked locations
|
|
104143
|
+
*
|
|
104144
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#ApplyNewLayoutOptions)
|
|
104145
|
+
*/
|
|
104146
|
+
lockedNodeLocations?: globalThis.Map<string, Point>;
|
|
104147
|
+
|
|
104148
|
+
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
104149
|
+
|
|
104150
|
+
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104151
|
+
}
|
|
103191
104152
|
|
|
103192
104153
|
export class WebMap extends WebDocument2D {
|
|
103193
104154
|
/**
|
|
@@ -105775,6 +106736,12 @@ declare namespace __esri {
|
|
|
105775
106736
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemap)
|
|
105776
106737
|
*/
|
|
105777
106738
|
activeBasemap: Basemap;
|
|
106739
|
+
/**
|
|
106740
|
+
* The current index of the active [basemap](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#basemap) in the [BasemapGallery](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html).
|
|
106741
|
+
*
|
|
106742
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemapIndex)
|
|
106743
|
+
*/
|
|
106744
|
+
activeBasemapIndex: number;
|
|
105778
106745
|
/**
|
|
105779
106746
|
* A collection of [BasemapGalleryItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-support-BasemapGalleryItem.html)s representing basemaps.
|
|
105780
106747
|
*
|
|
@@ -105817,6 +106784,12 @@ declare namespace __esri {
|
|
|
105817
106784
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemap)
|
|
105818
106785
|
*/
|
|
105819
106786
|
activeBasemap?: BasemapProperties;
|
|
106787
|
+
/**
|
|
106788
|
+
* The current index of the active [basemap](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#basemap) in the [BasemapGallery](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html).
|
|
106789
|
+
*
|
|
106790
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemapIndex)
|
|
106791
|
+
*/
|
|
106792
|
+
activeBasemapIndex?: number;
|
|
105820
106793
|
/**
|
|
105821
106794
|
* A collection of [BasemapGalleryItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-support-BasemapGalleryItem.html)s representing basemaps.
|
|
105822
106795
|
*
|
|
@@ -106074,15 +107047,6 @@ declare namespace __esri {
|
|
|
106074
107047
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#dragEnabled)
|
|
106075
107048
|
*/
|
|
106076
107049
|
dragEnabled: boolean;
|
|
106077
|
-
/**
|
|
106078
|
-
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
106079
|
-
*
|
|
106080
|
-
* @default false
|
|
106081
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
106082
|
-
*
|
|
106083
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
106084
|
-
*/
|
|
106085
|
-
editingEnabled: boolean;
|
|
106086
107050
|
/**
|
|
106087
107051
|
* Indicates whether the form to edit the basemap's title is currently visible.
|
|
106088
107052
|
*
|
|
@@ -106115,15 +107079,6 @@ declare namespace __esri {
|
|
|
106115
107079
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#minFilterItems)
|
|
106116
107080
|
*/
|
|
106117
107081
|
minFilterItems: number;
|
|
106118
|
-
/**
|
|
106119
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
106120
|
-
*
|
|
106121
|
-
* @default false
|
|
106122
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
106123
|
-
*
|
|
106124
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
106125
|
-
*/
|
|
106126
|
-
multipleSelectionEnabled: boolean;
|
|
106127
107082
|
/**
|
|
106128
107083
|
* The value of the filter input text string if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#visibleElements) is true.
|
|
106129
107084
|
*
|
|
@@ -106240,15 +107195,6 @@ declare namespace __esri {
|
|
|
106240
107195
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#dragEnabled)
|
|
106241
107196
|
*/
|
|
106242
107197
|
dragEnabled?: boolean;
|
|
106243
|
-
/**
|
|
106244
|
-
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
106245
|
-
*
|
|
106246
|
-
* @default false
|
|
106247
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
106248
|
-
*
|
|
106249
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
106250
|
-
*/
|
|
106251
|
-
editingEnabled?: boolean;
|
|
106252
107198
|
/**
|
|
106253
107199
|
* Indicates whether the form to edit the basemap's title is currently visible.
|
|
106254
107200
|
*
|
|
@@ -106281,15 +107227,6 @@ declare namespace __esri {
|
|
|
106281
107227
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#minFilterItems)
|
|
106282
107228
|
*/
|
|
106283
107229
|
minFilterItems?: number;
|
|
106284
|
-
/**
|
|
106285
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
106286
|
-
*
|
|
106287
|
-
* @default false
|
|
106288
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
106289
|
-
*
|
|
106290
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
106291
|
-
*/
|
|
106292
|
-
multipleSelectionEnabled?: boolean;
|
|
106293
107230
|
/**
|
|
106294
107231
|
* The value of the filter input text string if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#visibleElements) is true.
|
|
106295
107232
|
*
|
|
@@ -106584,7 +107521,7 @@ declare namespace __esri {
|
|
|
106584
107521
|
*/
|
|
106585
107522
|
editTitleButton?: boolean;
|
|
106586
107523
|
/**
|
|
106587
|
-
* **Since 4.25** Indicates whether
|
|
107524
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
106588
107525
|
*
|
|
106589
107526
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#VisibleElements)
|
|
106590
107527
|
*/
|
|
@@ -106934,15 +107871,6 @@ declare namespace __esri {
|
|
|
106934
107871
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#dragEnabled)
|
|
106935
107872
|
*/
|
|
106936
107873
|
dragEnabled: boolean;
|
|
106937
|
-
/**
|
|
106938
|
-
* Indicates whether the bookmarks are able to be edited.
|
|
106939
|
-
*
|
|
106940
|
-
* @default false
|
|
106941
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
106942
|
-
*
|
|
106943
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
106944
|
-
*/
|
|
106945
|
-
editingEnabled: boolean;
|
|
106946
107874
|
/**
|
|
106947
107875
|
* Defines the text used as a placeholder when visibleElements.filter is set to `true`.
|
|
106948
107876
|
*
|
|
@@ -107029,15 +107957,6 @@ declare namespace __esri {
|
|
|
107029
107957
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#dragEnabled)
|
|
107030
107958
|
*/
|
|
107031
107959
|
dragEnabled?: boolean;
|
|
107032
|
-
/**
|
|
107033
|
-
* Indicates whether the bookmarks are able to be edited.
|
|
107034
|
-
*
|
|
107035
|
-
* @default false
|
|
107036
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
107037
|
-
*
|
|
107038
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
107039
|
-
*/
|
|
107040
|
-
editingEnabled?: boolean;
|
|
107041
107960
|
/**
|
|
107042
107961
|
* Defines the text used as a placeholder when visibleElements.filter is set to `true`.
|
|
107043
107962
|
*
|
|
@@ -107313,12 +108232,6 @@ declare namespace __esri {
|
|
|
107313
108232
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#VisibleElements)
|
|
107314
108233
|
*/
|
|
107315
108234
|
export interface BookmarksVisibleElements {
|
|
107316
|
-
/**
|
|
107317
|
-
* _Deprecated since 4.29.
|
|
107318
|
-
*
|
|
107319
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#VisibleElements)
|
|
107320
|
-
*/
|
|
107321
|
-
addBookmark?: boolean;
|
|
107322
108235
|
/**
|
|
107323
108236
|
* _Since 4.29._ Indicates whether the button to add a new bookmark displays.
|
|
107324
108237
|
*
|
|
@@ -107991,6 +108904,14 @@ declare namespace __esri {
|
|
|
107991
108904
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listItemCreatedFunction)
|
|
107992
108905
|
*/
|
|
107993
108906
|
listItemCreatedFunction: CatalogLayerListViewModelListItemCreatedHandler;
|
|
108907
|
+
/**
|
|
108908
|
+
* Specifies whether to ignore the [listMode](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html#listMode) property of the layers to display all layers.
|
|
108909
|
+
*
|
|
108910
|
+
* @default false
|
|
108911
|
+
*
|
|
108912
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listModeDisabled)
|
|
108913
|
+
*/
|
|
108914
|
+
listModeDisabled: boolean;
|
|
107994
108915
|
/**
|
|
107995
108916
|
* The view model's state.
|
|
107996
108917
|
*
|
|
@@ -108043,6 +108964,14 @@ declare namespace __esri {
|
|
|
108043
108964
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listItemCreatedFunction)
|
|
108044
108965
|
*/
|
|
108045
108966
|
listItemCreatedFunction?: CatalogLayerListViewModelListItemCreatedHandler;
|
|
108967
|
+
/**
|
|
108968
|
+
* Specifies whether to ignore the [listMode](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html#listMode) property of the layers to display all layers.
|
|
108969
|
+
*
|
|
108970
|
+
* @default false
|
|
108971
|
+
*
|
|
108972
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listModeDisabled)
|
|
108973
|
+
*/
|
|
108974
|
+
listModeDisabled?: boolean;
|
|
108046
108975
|
/**
|
|
108047
108976
|
* The view from which the widget will operate.
|
|
108048
108977
|
*
|
|
@@ -108088,7 +109017,7 @@ declare namespace __esri {
|
|
|
108088
109017
|
*/
|
|
108089
109018
|
collapseButton?: boolean;
|
|
108090
109019
|
/**
|
|
108091
|
-
* Indicates whether
|
|
109020
|
+
* Indicates whether to display layers with load errors.
|
|
108092
109021
|
*
|
|
108093
109022
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#VisibleElements)
|
|
108094
109023
|
*/
|
|
@@ -114639,19 +115568,33 @@ declare namespace __esri {
|
|
|
114639
115568
|
*
|
|
114640
115569
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#collapsed)
|
|
114641
115570
|
*/
|
|
114642
|
-
|
|
115571
|
+
collapsed: boolean;
|
|
114643
115572
|
/**
|
|
114644
115573
|
* The content of the Features widget.
|
|
114645
115574
|
*
|
|
114646
115575
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#content)
|
|
114647
115576
|
*/
|
|
114648
115577
|
content: string | HTMLElement | Widget;
|
|
115578
|
+
/**
|
|
115579
|
+
* Indicates whether the feature navigation arrows are displayed at the top of the widget.
|
|
115580
|
+
*
|
|
115581
|
+
* @default false
|
|
115582
|
+
*
|
|
115583
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#featureNavigationTop)
|
|
115584
|
+
*/
|
|
115585
|
+
featureNavigationTop: boolean;
|
|
114649
115586
|
/**
|
|
114650
115587
|
* An array of features associated with the Features widget.
|
|
114651
115588
|
*
|
|
114652
115589
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#features)
|
|
114653
115590
|
*/
|
|
114654
115591
|
features: Graphic[];
|
|
115592
|
+
/**
|
|
115593
|
+
* The actions that are displayed in the header of the widget.
|
|
115594
|
+
*
|
|
115595
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#headerActions)
|
|
115596
|
+
*/
|
|
115597
|
+
headerActions: Collection<ActionBase>;
|
|
114655
115598
|
/**
|
|
114656
115599
|
* Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#title) of the widget.
|
|
114657
115600
|
*
|
|
@@ -114791,18 +115734,40 @@ declare namespace __esri {
|
|
|
114791
115734
|
}
|
|
114792
115735
|
|
|
114793
115736
|
interface FeaturesProperties extends WidgetProperties, GoToProperties {
|
|
115737
|
+
/**
|
|
115738
|
+
* Indicates whether the popup displays its content.
|
|
115739
|
+
*
|
|
115740
|
+
* @default false
|
|
115741
|
+
*
|
|
115742
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#collapsed)
|
|
115743
|
+
*/
|
|
115744
|
+
collapsed?: boolean;
|
|
114794
115745
|
/**
|
|
114795
115746
|
* The content of the Features widget.
|
|
114796
115747
|
*
|
|
114797
115748
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#content)
|
|
114798
115749
|
*/
|
|
114799
115750
|
content?: string | HTMLElement | WidgetProperties;
|
|
115751
|
+
/**
|
|
115752
|
+
* Indicates whether the feature navigation arrows are displayed at the top of the widget.
|
|
115753
|
+
*
|
|
115754
|
+
* @default false
|
|
115755
|
+
*
|
|
115756
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#featureNavigationTop)
|
|
115757
|
+
*/
|
|
115758
|
+
featureNavigationTop?: boolean;
|
|
114800
115759
|
/**
|
|
114801
115760
|
* An array of features associated with the Features widget.
|
|
114802
115761
|
*
|
|
114803
115762
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#features)
|
|
114804
115763
|
*/
|
|
114805
115764
|
features?: GraphicProperties[];
|
|
115765
|
+
/**
|
|
115766
|
+
* The actions that are displayed in the header of the widget.
|
|
115767
|
+
*
|
|
115768
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#headerActions)
|
|
115769
|
+
*/
|
|
115770
|
+
headerActions?: CollectionProperties<ActionBaseProperties>;
|
|
114806
115771
|
/**
|
|
114807
115772
|
* Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#title) of the widget.
|
|
114808
115773
|
*
|
|
@@ -114892,6 +115857,12 @@ declare namespace __esri {
|
|
|
114892
115857
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#active)
|
|
114893
115858
|
*/
|
|
114894
115859
|
readonly active: boolean;
|
|
115860
|
+
/**
|
|
115861
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
115862
|
+
*
|
|
115863
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
115864
|
+
*/
|
|
115865
|
+
activeFeature: Graphic;
|
|
114895
115866
|
/**
|
|
114896
115867
|
* A collection of [actions](https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html) or [action toggles](https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html).
|
|
114897
115868
|
*
|
|
@@ -114942,12 +115913,28 @@ declare namespace __esri {
|
|
|
114942
115913
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureCount)
|
|
114943
115914
|
*/
|
|
114944
115915
|
readonly featureCount: number;
|
|
115916
|
+
/**
|
|
115917
|
+
* This property enables showing the list of features.
|
|
115918
|
+
*
|
|
115919
|
+
* @default false
|
|
115920
|
+
*
|
|
115921
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
115922
|
+
*/
|
|
115923
|
+
featureMenuOpen: boolean;
|
|
114945
115924
|
/**
|
|
114946
115925
|
* The title to display on the widget while viewing the feature menu.
|
|
114947
115926
|
*
|
|
114948
115927
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
114949
115928
|
*/
|
|
114950
115929
|
featureMenuTitle: string;
|
|
115930
|
+
/**
|
|
115931
|
+
* The current page number in the feature browsing menu.
|
|
115932
|
+
*
|
|
115933
|
+
* @default null
|
|
115934
|
+
*
|
|
115935
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
115936
|
+
*/
|
|
115937
|
+
featurePage: number;
|
|
114951
115938
|
/**
|
|
114952
115939
|
* An array of features.
|
|
114953
115940
|
*
|
|
@@ -115026,6 +116013,20 @@ declare namespace __esri {
|
|
|
115026
116013
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
115027
116014
|
*/
|
|
115028
116015
|
promises: Promise<any>[];
|
|
116016
|
+
/**
|
|
116017
|
+
* The screen location of the selected feature.
|
|
116018
|
+
*
|
|
116019
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116020
|
+
*/
|
|
116021
|
+
screenLocation: FeaturesViewModelScreenPoint;
|
|
116022
|
+
/**
|
|
116023
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116024
|
+
*
|
|
116025
|
+
* @default false
|
|
116026
|
+
*
|
|
116027
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116028
|
+
*/
|
|
116029
|
+
screenLocationEnabled: boolean;
|
|
115029
116030
|
/**
|
|
115030
116031
|
* The graphic used to represent the cluster extent when the `Browse features` action is active.
|
|
115031
116032
|
*
|
|
@@ -115044,6 +116045,12 @@ declare namespace __esri {
|
|
|
115044
116045
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex)
|
|
115045
116046
|
*/
|
|
115046
116047
|
selectedFeatureIndex: number;
|
|
116048
|
+
/**
|
|
116049
|
+
* The [view model](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureViewModel.html) of the selected feature.
|
|
116050
|
+
*
|
|
116051
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureViewModel)
|
|
116052
|
+
*/
|
|
116053
|
+
readonly selectedFeatureViewModel: FeatureViewModel;
|
|
115047
116054
|
/**
|
|
115048
116055
|
* The spatial reference used for [Arcade](https://developers.arcgis.com/arcade) operations.
|
|
115049
116056
|
*
|
|
@@ -115072,6 +116079,14 @@ declare namespace __esri {
|
|
|
115072
116079
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
115073
116080
|
*/
|
|
115074
116081
|
title: string;
|
|
116082
|
+
/**
|
|
116083
|
+
* Indicates whether to update the [location](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#location) when the [selectedFeatureIndex](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex) changes.
|
|
116084
|
+
*
|
|
116085
|
+
* @default false
|
|
116086
|
+
*
|
|
116087
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116088
|
+
*/
|
|
116089
|
+
updateLocationEnabled: boolean;
|
|
115075
116090
|
/**
|
|
115076
116091
|
* A reference to the [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
115077
116092
|
*
|
|
@@ -115086,6 +116101,12 @@ declare namespace __esri {
|
|
|
115086
116101
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
115087
116102
|
*/
|
|
115088
116103
|
visible: boolean;
|
|
116104
|
+
/**
|
|
116105
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116106
|
+
*
|
|
116107
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116108
|
+
*/
|
|
116109
|
+
waitingForContents: boolean;
|
|
115089
116110
|
/**
|
|
115090
116111
|
* Indicates whether a feature was found while resolving [promises](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises).
|
|
115091
116112
|
*
|
|
@@ -115134,6 +116155,12 @@ declare namespace __esri {
|
|
|
115134
116155
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#triggerAction)
|
|
115135
116156
|
*/
|
|
115136
116157
|
triggerAction(actionIndex: number): void;
|
|
116158
|
+
/**
|
|
116159
|
+
* Sets the view to a given target.
|
|
116160
|
+
*
|
|
116161
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116162
|
+
*/
|
|
116163
|
+
zoomTo(params?: FeaturesViewModelZoomToParams): Promise<any>;
|
|
115137
116164
|
|
|
115138
116165
|
on(name: "trigger-action", eventHandler: FeaturesViewModelTriggerActionEventHandler): IHandle;
|
|
115139
116166
|
}
|
|
@@ -115147,6 +116174,12 @@ declare namespace __esri {
|
|
|
115147
116174
|
actions?: CollectionProperties<
|
|
115148
116175
|
(ActionButtonProperties & { type: "button" }) | (ActionToggleProperties & { type: "toggle" })
|
|
115149
116176
|
>;
|
|
116177
|
+
/**
|
|
116178
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
116179
|
+
*
|
|
116180
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
116181
|
+
*/
|
|
116182
|
+
activeFeature?: GraphicProperties;
|
|
115150
116183
|
/**
|
|
115151
116184
|
* This closes the container when the [View](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html) camera or [Viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html) changes.
|
|
115152
116185
|
*
|
|
@@ -115177,12 +116210,28 @@ declare namespace __esri {
|
|
|
115177
116210
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#defaultPopupTemplateEnabled)
|
|
115178
116211
|
*/
|
|
115179
116212
|
defaultPopupTemplateEnabled?: boolean;
|
|
116213
|
+
/**
|
|
116214
|
+
* This property enables showing the list of features.
|
|
116215
|
+
*
|
|
116216
|
+
* @default false
|
|
116217
|
+
*
|
|
116218
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
116219
|
+
*/
|
|
116220
|
+
featureMenuOpen?: boolean;
|
|
115180
116221
|
/**
|
|
115181
116222
|
* The title to display on the widget while viewing the feature menu.
|
|
115182
116223
|
*
|
|
115183
116224
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
115184
116225
|
*/
|
|
115185
116226
|
featureMenuTitle?: string;
|
|
116227
|
+
/**
|
|
116228
|
+
* The current page number in the feature browsing menu.
|
|
116229
|
+
*
|
|
116230
|
+
* @default null
|
|
116231
|
+
*
|
|
116232
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
116233
|
+
*/
|
|
116234
|
+
featurePage?: number;
|
|
115186
116235
|
/**
|
|
115187
116236
|
* An array of features.
|
|
115188
116237
|
*
|
|
@@ -115239,6 +116288,20 @@ declare namespace __esri {
|
|
|
115239
116288
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
115240
116289
|
*/
|
|
115241
116290
|
promises?: Promise<any>[];
|
|
116291
|
+
/**
|
|
116292
|
+
* The screen location of the selected feature.
|
|
116293
|
+
*
|
|
116294
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116295
|
+
*/
|
|
116296
|
+
screenLocation?: FeaturesViewModelScreenPoint;
|
|
116297
|
+
/**
|
|
116298
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116299
|
+
*
|
|
116300
|
+
* @default false
|
|
116301
|
+
*
|
|
116302
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116303
|
+
*/
|
|
116304
|
+
screenLocationEnabled?: boolean;
|
|
115242
116305
|
/**
|
|
115243
116306
|
* Index of the feature that is [selected](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeature).
|
|
115244
116307
|
*
|
|
@@ -115265,6 +116328,14 @@ declare namespace __esri {
|
|
|
115265
116328
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
115266
116329
|
*/
|
|
115267
116330
|
title?: string;
|
|
116331
|
+
/**
|
|
116332
|
+
* Indicates whether to update the [location](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#location) when the [selectedFeatureIndex](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex) changes.
|
|
116333
|
+
*
|
|
116334
|
+
* @default false
|
|
116335
|
+
*
|
|
116336
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116337
|
+
*/
|
|
116338
|
+
updateLocationEnabled?: boolean;
|
|
115268
116339
|
/**
|
|
115269
116340
|
* A reference to the [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
115270
116341
|
*
|
|
@@ -115279,6 +116350,12 @@ declare namespace __esri {
|
|
|
115279
116350
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
115280
116351
|
*/
|
|
115281
116352
|
visible?: boolean;
|
|
116353
|
+
/**
|
|
116354
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116355
|
+
*
|
|
116356
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116357
|
+
*/
|
|
116358
|
+
waitingForContents?: boolean;
|
|
115282
116359
|
}
|
|
115283
116360
|
|
|
115284
116361
|
export interface FeaturesViewModelFetchFeaturesScreenPoint {
|
|
@@ -115341,6 +116418,41 @@ declare namespace __esri {
|
|
|
115341
116418
|
updateLocationEnabled?: boolean;
|
|
115342
116419
|
}
|
|
115343
116420
|
|
|
116421
|
+
export interface FeaturesViewModelZoomToParams {
|
|
116422
|
+
/**
|
|
116423
|
+
* The target location/viewpoint/extent to animate to.
|
|
116424
|
+
*
|
|
116425
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116426
|
+
*/
|
|
116427
|
+
target: GoToTarget2D | GoToTarget3D;
|
|
116428
|
+
/**
|
|
116429
|
+
* Options defining the animation, duration, and easing of the navigation.
|
|
116430
|
+
*
|
|
116431
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116432
|
+
*/
|
|
116433
|
+
options?: GoToOptions2D | GoToOptions3D;
|
|
116434
|
+
}
|
|
116435
|
+
|
|
116436
|
+
/**
|
|
116437
|
+
* An object representing a point on the screen.
|
|
116438
|
+
*
|
|
116439
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116440
|
+
*/
|
|
116441
|
+
export interface FeaturesViewModelScreenPoint {
|
|
116442
|
+
/**
|
|
116443
|
+
* The x coordinate.
|
|
116444
|
+
*
|
|
116445
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116446
|
+
*/
|
|
116447
|
+
x: number;
|
|
116448
|
+
/**
|
|
116449
|
+
* The y coordinate.
|
|
116450
|
+
*
|
|
116451
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116452
|
+
*/
|
|
116453
|
+
y: number;
|
|
116454
|
+
}
|
|
116455
|
+
|
|
115344
116456
|
export interface FeaturesViewModelTriggerActionEvent {
|
|
115345
116457
|
action: ActionButton | ActionToggle;
|
|
115346
116458
|
}
|
|
@@ -117570,9 +118682,7 @@ declare namespace __esri {
|
|
|
117570
118682
|
|
|
117571
118683
|
export type FieldValueFormatFunction = (params: any) => string | number | HTMLElement;
|
|
117572
118684
|
|
|
117573
|
-
export
|
|
117574
|
-
|
|
117575
|
-
export class Column {
|
|
118685
|
+
export class Column extends Accessor {
|
|
117576
118686
|
/**
|
|
117577
118687
|
* The `Column` class works with the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html) and provides much of the underlying logic for column behavior.
|
|
117578
118688
|
*
|
|
@@ -120816,15 +121926,6 @@ declare namespace __esri {
|
|
|
120816
121926
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#minFilterItems)
|
|
120817
121927
|
*/
|
|
120818
121928
|
minFilterItems: number;
|
|
120819
|
-
/**
|
|
120820
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
120821
|
-
*
|
|
120822
|
-
* @default false
|
|
120823
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
120824
|
-
*
|
|
120825
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
120826
|
-
*/
|
|
120827
|
-
multipleSelectionEnabled: boolean;
|
|
120828
121929
|
/**
|
|
120829
121930
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that are opened in a [catalogLayerList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#catalogLayerList) or [tableList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#tableList) flow item.
|
|
120830
121931
|
*
|
|
@@ -120845,15 +121946,6 @@ declare namespace __esri {
|
|
|
120845
121946
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectedItems)
|
|
120846
121947
|
*/
|
|
120847
121948
|
selectedItems: Collection<ListItem>;
|
|
120848
|
-
/**
|
|
120849
|
-
* Indicates whether list items may be selected by the user.
|
|
120850
|
-
*
|
|
120851
|
-
* @default false
|
|
120852
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
120853
|
-
*
|
|
120854
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
120855
|
-
*/
|
|
120856
|
-
selectionEnabled: boolean;
|
|
120857
121949
|
/**
|
|
120858
121950
|
* Specifies the selection mode.
|
|
120859
121951
|
*
|
|
@@ -120990,15 +122082,6 @@ declare namespace __esri {
|
|
|
120990
122082
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#minFilterItems)
|
|
120991
122083
|
*/
|
|
120992
122084
|
minFilterItems?: number;
|
|
120993
|
-
/**
|
|
120994
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
120995
|
-
*
|
|
120996
|
-
* @default false
|
|
120997
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
120998
|
-
*
|
|
120999
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
121000
|
-
*/
|
|
121001
|
-
multipleSelectionEnabled?: boolean;
|
|
121002
122085
|
/**
|
|
121003
122086
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that are opened in a [catalogLayerList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#catalogLayerList) or [tableList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#tableList) flow item.
|
|
121004
122087
|
*
|
|
@@ -121013,15 +122096,6 @@ declare namespace __esri {
|
|
|
121013
122096
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectedItems)
|
|
121014
122097
|
*/
|
|
121015
122098
|
selectedItems?: CollectionProperties<ListItemProperties>;
|
|
121016
|
-
/**
|
|
121017
|
-
* Indicates whether list items may be selected by the user.
|
|
121018
|
-
*
|
|
121019
|
-
* @default false
|
|
121020
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
121021
|
-
*
|
|
121022
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
121023
|
-
*/
|
|
121024
|
-
selectionEnabled?: boolean;
|
|
121025
122099
|
/**
|
|
121026
122100
|
* Specifies the selection mode.
|
|
121027
122101
|
*
|
|
@@ -121232,6 +122306,14 @@ declare namespace __esri {
|
|
|
121232
122306
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#hidden)
|
|
121233
122307
|
*/
|
|
121234
122308
|
hidden: boolean;
|
|
122309
|
+
/**
|
|
122310
|
+
* Whether the layer is unsupported by the view.
|
|
122311
|
+
*
|
|
122312
|
+
* @default false
|
|
122313
|
+
*
|
|
122314
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#incompatible)
|
|
122315
|
+
*/
|
|
122316
|
+
readonly incompatible: boolean;
|
|
121235
122317
|
/**
|
|
121236
122318
|
* The layer associated with the triggered action.
|
|
121237
122319
|
*
|
|
@@ -121770,7 +122852,7 @@ declare namespace __esri {
|
|
|
121770
122852
|
*/
|
|
121771
122853
|
collapseButton?: boolean;
|
|
121772
122854
|
/**
|
|
121773
|
-
* **Since 4.25** Indicates whether
|
|
122855
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
121774
122856
|
*
|
|
121775
122857
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#VisibleElements)
|
|
121776
122858
|
*/
|
|
@@ -123087,15 +124169,6 @@ declare namespace __esri {
|
|
|
123087
124169
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#popupEnabled)
|
|
123088
124170
|
*/
|
|
123089
124171
|
popupEnabled: boolean;
|
|
123090
|
-
/**
|
|
123091
|
-
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
123092
|
-
*
|
|
123093
|
-
* @default true
|
|
123094
|
-
* @deprecated since version 4.29. Use Track widget instead
|
|
123095
|
-
*
|
|
123096
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
123097
|
-
*/
|
|
123098
|
-
rotationEnabled: boolean;
|
|
123099
124172
|
/**
|
|
123100
124173
|
* Indicates the scale to set on the view when navigating to the position of the geolocated result once a location is returned from the [track](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#event-track) event.
|
|
123101
124174
|
*
|
|
@@ -123166,15 +124239,6 @@ declare namespace __esri {
|
|
|
123166
124239
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#popupEnabled)
|
|
123167
124240
|
*/
|
|
123168
124241
|
popupEnabled?: boolean;
|
|
123169
|
-
/**
|
|
123170
|
-
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
123171
|
-
*
|
|
123172
|
-
* @default true
|
|
123173
|
-
* @deprecated since version 4.29. Use Track widget instead
|
|
123174
|
-
*
|
|
123175
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
123176
|
-
*/
|
|
123177
|
-
rotationEnabled?: boolean;
|
|
123178
124242
|
/**
|
|
123179
124243
|
* Indicates the scale to set on the view when navigating to the position of the geolocated result once a location is returned from the [track](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#event-track) event.
|
|
123180
124244
|
*
|
|
@@ -130630,9 +131694,7 @@ declare namespace __esri {
|
|
|
130630
131694
|
visibleElements?: SliderVisibleElements;
|
|
130631
131695
|
}
|
|
130632
131696
|
|
|
130633
|
-
export
|
|
130634
|
-
|
|
130635
|
-
export class SliderViewModel {
|
|
131697
|
+
export class SliderViewModel extends Accessor {
|
|
130636
131698
|
/**
|
|
130637
131699
|
* Provides the logic for the [Slider](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html) widget.
|
|
130638
131700
|
*
|
|
@@ -133545,6 +134607,22 @@ declare namespace __esri {
|
|
|
133545
134607
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#leadingLayers)
|
|
133546
134608
|
*/
|
|
133547
134609
|
leadingLayers: Collection<Layer>;
|
|
134610
|
+
/**
|
|
134611
|
+
* The maximum position of the Swipe, as a percentage.
|
|
134612
|
+
*
|
|
134613
|
+
* @default 100
|
|
134614
|
+
*
|
|
134615
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#max)
|
|
134616
|
+
*/
|
|
134617
|
+
readonly max: number;
|
|
134618
|
+
/**
|
|
134619
|
+
* The minimum position of the Swipe, as a percentage.
|
|
134620
|
+
*
|
|
134621
|
+
* @default 0
|
|
134622
|
+
*
|
|
134623
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#min)
|
|
134624
|
+
*/
|
|
134625
|
+
readonly min: number;
|
|
133548
134626
|
/**
|
|
133549
134627
|
* The position of the Swipe widget.
|
|
133550
134628
|
*
|
|
@@ -133561,6 +134639,22 @@ declare namespace __esri {
|
|
|
133561
134639
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#state)
|
|
133562
134640
|
*/
|
|
133563
134641
|
readonly state: "disabled" | "ready";
|
|
134642
|
+
/**
|
|
134643
|
+
* The step value used to increment or decrement the position of the Swipe when using keyboard navigation.
|
|
134644
|
+
*
|
|
134645
|
+
* @default 0.5
|
|
134646
|
+
*
|
|
134647
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step)
|
|
134648
|
+
*/
|
|
134649
|
+
step: number;
|
|
134650
|
+
/**
|
|
134651
|
+
* The multiplier used to increase the [step](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step) value when the `Shift` key is pressed in combination with one of the arrow keys.
|
|
134652
|
+
*
|
|
134653
|
+
* @default 10
|
|
134654
|
+
*
|
|
134655
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#stepMultiplier)
|
|
134656
|
+
*/
|
|
134657
|
+
stepMultiplier: number;
|
|
133564
134658
|
/**
|
|
133565
134659
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that will show on the right or bottom side of Swipe widget.
|
|
133566
134660
|
*
|
|
@@ -133598,6 +134692,22 @@ declare namespace __esri {
|
|
|
133598
134692
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#position)
|
|
133599
134693
|
*/
|
|
133600
134694
|
position?: number;
|
|
134695
|
+
/**
|
|
134696
|
+
* The step value used to increment or decrement the position of the Swipe when using keyboard navigation.
|
|
134697
|
+
*
|
|
134698
|
+
* @default 0.5
|
|
134699
|
+
*
|
|
134700
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step)
|
|
134701
|
+
*/
|
|
134702
|
+
step?: number;
|
|
134703
|
+
/**
|
|
134704
|
+
* The multiplier used to increase the [step](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step) value when the `Shift` key is pressed in combination with one of the arrow keys.
|
|
134705
|
+
*
|
|
134706
|
+
* @default 10
|
|
134707
|
+
*
|
|
134708
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#stepMultiplier)
|
|
134709
|
+
*/
|
|
134710
|
+
stepMultiplier?: number;
|
|
133601
134711
|
/**
|
|
133602
134712
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that will show on the right or bottom side of Swipe widget.
|
|
133603
134713
|
*
|
|
@@ -133709,30 +134819,12 @@ declare namespace __esri {
|
|
|
133709
134819
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#minFilterItems)
|
|
133710
134820
|
*/
|
|
133711
134821
|
minFilterItems: number;
|
|
133712
|
-
/**
|
|
133713
|
-
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
133714
|
-
*
|
|
133715
|
-
* @default false
|
|
133716
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
133717
|
-
*
|
|
133718
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
133719
|
-
*/
|
|
133720
|
-
multipleSelectionEnabled: boolean;
|
|
133721
134822
|
/**
|
|
133722
134823
|
* A collection of selected [ListItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html)s representing table list items selected by the user.
|
|
133723
134824
|
*
|
|
133724
134825
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectedItems)
|
|
133725
134826
|
*/
|
|
133726
134827
|
selectedItems: Collection<TableListListItem>;
|
|
133727
|
-
/**
|
|
133728
|
-
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
133729
|
-
*
|
|
133730
|
-
* @default false
|
|
133731
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
133732
|
-
*
|
|
133733
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
133734
|
-
*/
|
|
133735
|
-
selectionEnabled: boolean;
|
|
133736
134828
|
/**
|
|
133737
134829
|
* Specifies the selection mode.
|
|
133738
134830
|
*
|
|
@@ -133839,30 +134931,12 @@ declare namespace __esri {
|
|
|
133839
134931
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#minFilterItems)
|
|
133840
134932
|
*/
|
|
133841
134933
|
minFilterItems?: number;
|
|
133842
|
-
/**
|
|
133843
|
-
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
133844
|
-
*
|
|
133845
|
-
* @default false
|
|
133846
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
133847
|
-
*
|
|
133848
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
133849
|
-
*/
|
|
133850
|
-
multipleSelectionEnabled?: boolean;
|
|
133851
134934
|
/**
|
|
133852
134935
|
* A collection of selected [ListItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html)s representing table list items selected by the user.
|
|
133853
134936
|
*
|
|
133854
134937
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectedItems)
|
|
133855
134938
|
*/
|
|
133856
134939
|
selectedItems?: CollectionProperties<TableListListItem>;
|
|
133857
|
-
/**
|
|
133858
|
-
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
133859
|
-
*
|
|
133860
|
-
* @default false
|
|
133861
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
133862
|
-
*
|
|
133863
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
133864
|
-
*/
|
|
133865
|
-
selectionEnabled?: boolean;
|
|
133866
134940
|
/**
|
|
133867
134941
|
* Specifies the selection mode.
|
|
133868
134942
|
*
|
|
@@ -134232,7 +135306,7 @@ declare namespace __esri {
|
|
|
134232
135306
|
*/
|
|
134233
135307
|
collapseButton?: boolean;
|
|
134234
135308
|
/**
|
|
134235
|
-
* **Since 4.25** Indicates whether
|
|
135309
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
134236
135310
|
*
|
|
134237
135311
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#VisibleElements)
|
|
134238
135312
|
*/
|
|
@@ -137366,9 +138440,7 @@ declare namespace __esri {
|
|
|
137366
138440
|
previousButton?: boolean;
|
|
137367
138441
|
}
|
|
137368
138442
|
|
|
137369
|
-
export
|
|
137370
|
-
|
|
137371
|
-
export class VersionManagementViewModel {
|
|
138443
|
+
export class VersionManagementViewModel extends Accessor {
|
|
137372
138444
|
/**
|
|
137373
138445
|
* This class allows you to manage versions from a variety of [feature services](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-featureService-FeatureService.html).
|
|
137374
138446
|
*
|
|
@@ -142980,6 +144052,31 @@ declare module "esri/layers/WMTSLayer" {
|
|
|
142980
144052
|
export = WMTSLayer;
|
|
142981
144053
|
}
|
|
142982
144054
|
|
|
144055
|
+
declare module "esri/linkChart/ChronologicalLayoutSettings" {
|
|
144056
|
+
import ChronologicalLayoutSettings = __esri.ChronologicalLayoutSettings;
|
|
144057
|
+
export = ChronologicalLayoutSettings;
|
|
144058
|
+
}
|
|
144059
|
+
|
|
144060
|
+
declare module "esri/linkChart/LayoutSettings" {
|
|
144061
|
+
import LayoutSettings = __esri.LayoutSettings;
|
|
144062
|
+
export = LayoutSettings;
|
|
144063
|
+
}
|
|
144064
|
+
|
|
144065
|
+
declare module "esri/linkChart/LinkChartProperties" {
|
|
144066
|
+
import LinkChartProperties = __esri.LinkChartProperties;
|
|
144067
|
+
export = LinkChartProperties;
|
|
144068
|
+
}
|
|
144069
|
+
|
|
144070
|
+
declare module "esri/linkChart/NonspatialDataDisplay" {
|
|
144071
|
+
import NonspatialDataDisplay = __esri.NonspatialDataDisplay;
|
|
144072
|
+
export = NonspatialDataDisplay;
|
|
144073
|
+
}
|
|
144074
|
+
|
|
144075
|
+
declare module "esri/linkChart/OrganicLayoutSettings" {
|
|
144076
|
+
import OrganicLayoutSettings = __esri.OrganicLayoutSettings;
|
|
144077
|
+
export = OrganicLayoutSettings;
|
|
144078
|
+
}
|
|
144079
|
+
|
|
142983
144080
|
declare module "esri/Map" {
|
|
142984
144081
|
import Map = __esri.Map;
|
|
142985
144082
|
export = Map;
|
|
@@ -143460,6 +144557,11 @@ declare module "esri/rest/knowledgeGraph/GraphQueryResult" {
|
|
|
143460
144557
|
export = GraphQueryResult;
|
|
143461
144558
|
}
|
|
143462
144559
|
|
|
144560
|
+
declare module "esri/rest/knowledgeGraph/GraphQueryResultHeader" {
|
|
144561
|
+
import GraphQueryResultHeader = __esri.GraphQueryResultHeader;
|
|
144562
|
+
export = GraphQueryResultHeader;
|
|
144563
|
+
}
|
|
144564
|
+
|
|
143463
144565
|
declare module "esri/rest/knowledgeGraph/GraphQueryStreaming" {
|
|
143464
144566
|
import GraphQueryStreaming = __esri.GraphQueryStreaming;
|
|
143465
144567
|
export = GraphQueryStreaming;
|
|
@@ -143520,6 +144622,11 @@ declare module "esri/rest/knowledgeGraph/ServiceDefinition" {
|
|
|
143520
144622
|
export = ServiceDefinition;
|
|
143521
144623
|
}
|
|
143522
144624
|
|
|
144625
|
+
declare module "esri/rest/knowledgeGraph/SourceTypeValueBehavior" {
|
|
144626
|
+
import SourceTypeValueBehavior = __esri.SourceTypeValueBehavior;
|
|
144627
|
+
export = SourceTypeValueBehavior;
|
|
144628
|
+
}
|
|
144629
|
+
|
|
143523
144630
|
declare module "esri/rest/networks/support/AggregatedGeometry" {
|
|
143524
144631
|
import AggregatedGeometry = __esri.AggregatedGeometry;
|
|
143525
144632
|
export = AggregatedGeometry;
|
|
@@ -146485,6 +147592,16 @@ declare module "esri/layers/catalog/catalogUtils" {
|
|
|
146485
147592
|
export = catalogUtils;
|
|
146486
147593
|
}
|
|
146487
147594
|
|
|
147595
|
+
declare module "esri/layers/knowledgeGraph/cypherUtils" {
|
|
147596
|
+
import cypherUtils = __esri.cypherUtils;
|
|
147597
|
+
export = cypherUtils;
|
|
147598
|
+
}
|
|
147599
|
+
|
|
147600
|
+
declare module "esri/layers/knowledgeGraph/supportUtils" {
|
|
147601
|
+
import supportUtils = __esri.supportUtils;
|
|
147602
|
+
export = supportUtils;
|
|
147603
|
+
}
|
|
147604
|
+
|
|
146488
147605
|
declare module "esri/layers/ogc/wfsUtils" {
|
|
146489
147606
|
import wfsUtils = __esri.wfsUtils;
|
|
146490
147607
|
export = wfsUtils;
|
|
@@ -146766,8 +147883,8 @@ declare module "esri/smartMapping/raster/support/colorRamps" {
|
|
|
146766
147883
|
}
|
|
146767
147884
|
|
|
146768
147885
|
declare module "esri/smartMapping/raster/support/utils" {
|
|
146769
|
-
import
|
|
146770
|
-
export =
|
|
147886
|
+
import rasterSupportUtils = __esri.rasterSupportUtils;
|
|
147887
|
+
export = rasterSupportUtils;
|
|
146771
147888
|
}
|
|
146772
147889
|
|
|
146773
147890
|
declare module "esri/smartMapping/renderers/color" {
|
|
@@ -147115,6 +148232,21 @@ declare module "esri/applications/ExperienceBuilder/sketchUtils" {
|
|
|
147115
148232
|
export = sketchUtils;
|
|
147116
148233
|
}
|
|
147117
148234
|
|
|
148235
|
+
declare module "esri/applications/KnowledgeStudio/generalSharedKgUtils" {
|
|
148236
|
+
import generalSharedKgUtils = __esri.generalSharedKgUtils;
|
|
148237
|
+
export = generalSharedKgUtils;
|
|
148238
|
+
}
|
|
148239
|
+
|
|
148240
|
+
declare module "esri/applications/KnowledgeStudio/layerInternalAccessUtils" {
|
|
148241
|
+
import layerInternalAccessUtils = __esri.layerInternalAccessUtils;
|
|
148242
|
+
export = layerInternalAccessUtils;
|
|
148243
|
+
}
|
|
148244
|
+
|
|
148245
|
+
declare module "esri/applications/KnowledgeStudio/resourceSerializationUtils" {
|
|
148246
|
+
import resourceSerializationUtils = __esri.resourceSerializationUtils;
|
|
148247
|
+
export = resourceSerializationUtils;
|
|
148248
|
+
}
|
|
148249
|
+
|
|
147118
148250
|
declare module "esri/applications/MapViewer/mediaUtils" {
|
|
147119
148251
|
import mediaUtils = __esri.mediaUtils;
|
|
147120
148252
|
export = mediaUtils;
|