@arcgis/core 4.33.0-next.20250420 → 4.33.0-next.20250422
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/assets/esri/core/workers/RemoteClient.js +1 -1
- package/assets/esri/core/workers/chunks/3293b4041c222299428f.js +1 -0
- package/assets/esri/core/workers/chunks/{a91f2d1deb950f46ad09.js → 4f8782b3b6ad414409e8.js} +1 -1
- package/assets/esri/core/workers/chunks/82555a39a60110ca2713.js +1 -0
- package/assets/esri/core/workers/chunks/d81bebbb6fe000200d35.js +1 -0
- package/assets/esri/core/workers/chunks/fd36b7aaf0d8e0c84471.js +1 -0
- package/interfaces.d.ts +365 -53
- package/layers/support/rasterDatasets/TIFFRaster.js +1 -1
- package/layers/support/rasterFormats/TiffDecoder.js +1 -1
- package/layers/support/serviceCapabilitiesUtils.js +1 -1
- package/layers/support/wmsUtils.js +1 -1
- package/package.json +1 -1
- package/smartMapping/renderers/size.d.ts +1 -0
- package/smartMapping/renderers/size.js +1 -1
- package/smartMapping/renderers/support/referenceSizeUtils.js +1 -1
- package/smartMapping/renderers/support/regenerateUtils.js +1 -1
- package/smartMapping/renderers/support/rendererUtils.js +1 -1
- package/smartMapping/renderers/support/spikeUtils.js +1 -1
- package/support/revision.js +1 -1
- package/widgets/Print/CustomTemplate.js +1 -1
- package/widgets/Print/PrintViewModel.js +1 -1
- package/widgets/Print/utils.js +1 -1
- package/widgets/Print.js +1 -1
- package/assets/esri/core/workers/chunks/0a7cba60a5286ba621d4.js +0 -1
- package/assets/esri/core/workers/chunks/2cbab0c078d0b844934c.js +0 -1
- package/assets/esri/core/workers/chunks/38557792ff9516fc991b.js +0 -1
- package/assets/esri/core/workers/chunks/d28e2c9bdf514236b011.js +0 -1
package/interfaces.d.ts
CHANGED
|
@@ -82484,7 +82484,8 @@ declare namespace __esri {
|
|
|
82484
82484
|
* | high-to-low | The max data value is assigned the max size. The min data value is assigned the min size. All other values are interpolated.
|
|
82485
82485
|
* | above | The max data value is assigned the max size. The average data value is assigned the min size. All other values between the max data value and the average are interpolated. This is useful for mapping an increase in a variable over time, like an increase in population, or unemployment between two dates.
|
|
82486
82486
|
* | below | The min data value is assigned the max size. The average data value, is assigned the min size. All other values between the min data value and the average are interpolated. This is useful for mapping a decline in a variable over time, like a decrease in population, or unemployment between two dates.
|
|
82487
|
-
* | reference-size | _Since 4.30_ When defined, creates a proportional size renderer with an outer ring that functions as a reference line representing the maximum data value (or other threshold). The ring is proportionally filled by an inner dot based on the feature's data value specified in `field` (and `normalizationField` if defined). This is a good style for visualizing ratios and percentages. It works best for gridded datasets where geometries don't overlap, such as styles for binning (i.e. `forBinning = true`), hexbin layers, or any other layer created with data aggregated to tessellated shapes. This
|
|
82487
|
+
* | reference-size | _Since 4.30_ When defined, creates a proportional size renderer with an outer ring that functions as a reference line representing the maximum data value (or other threshold). The ring is proportionally filled by an inner dot based on the feature's data value specified in `field` (and `normalizationField` if defined). This is a good style for visualizing ratios and percentages. It works best for gridded datasets where geometries don't overlap, such as styles for binning (i.e. `forBinning = true`), hexbin layers, or any other layer created with data aggregated to tessellated shapes. This theme only applies to layers with a `polygon` geometry type, or any layer that has {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html binning} enabled. This theme is ignored if `valueExpression` is specified in lieu of a `field`.
|
|
82488
|
+
* | spike | _Since 4.33_ When defined, creates a spike symbol whose height is scaled based on the value of `field` and `normalizationField`. This theme works best for skewed datasets. This theme only applies to layers with a `polygon` or `point` geometry type. This theme is ignored if `valueExpression` is specified in lieu of a `field`.
|
|
82488
82489
|
* @param params.referenceSizeOptions _Since 4.30_ Options for specifying the symbol used in a reference size visualization.
|
|
82489
82490
|
* @param params.filter _Since 4.31_ When defined, only features included in the filter are considered in the attribute and spatial statistics calculations when determining the final renderer. This is useful when a lot of variation exists in the data that could otherwise result in undesired size ranges and stops. A common use case would be to set a filter that only includes features in the current extent of the view where the data is most likely to be viewed.
|
|
82490
82491
|
* @param params.sqlExpression A SQL expression evaluating to a number.
|
|
@@ -82532,6 +82533,8 @@ declare namespace __esri {
|
|
|
82532
82533
|
* | high-to-low | The max data value is assigned the max size. The min data value is assigned the min size. All other values are interpolated.
|
|
82533
82534
|
* | above | The max data value is assigned the max size. The average data value is assigned the min size. All other values between the max data value and the average are interpolated. This is useful for mapping an increase in a variable over time, like an increase in population, or unemployment between two dates.
|
|
82534
82535
|
* | below | The min data value is assigned the max size. The average data value, is assigned the min size. All other values between the min data value and the average are interpolated. This is useful for mapping a decline in a variable over time, like a decrease in population, or unemployment between two dates.
|
|
82536
|
+
* | reference-size | _Since 4.30_ When defined, creates a proportional size renderer with an outer ring that functions as a reference line representing the maximum data value (or other threshold). The ring is proportionally filled by an inner dot based on the feature's data value specified in `field` (and `normalizationField` if defined). This is a good style for visualizing ratios and percentages. It works best for gridded datasets where geometries don't overlap, such as styles for binning (i.e. `forBinning = true`), hexbin layers, or any other layer created with data aggregated to tessellated shapes. This theme only applies to layers with a `polygon` geometry type, or any layer that has {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html binning} enabled. This theme is ignored if `valueExpression` is specified in lieu of a `field`.
|
|
82537
|
+
* | spike | _Since 4.33_ When defined, creates a spike symbol whose height is scaled based on the value of `field` and `normalizationField`. This theme works best for skewed datasets. This theme only applies to layers with a `polygon` or `point` geometry type. This theme is ignored if `valueExpression` is specified in lieu of a `field`.
|
|
82535
82538
|
* @param params.referenceSizeOptions _Since 4.30_ When defined, creates a proportional size renderer with an outer ring that functions as a reference line representing a maximum data value (or threshold). The ring is proportionally filled by an inner dot based on the feature's data value specified in `field` (and `normalizationField` if defined). This is a good style for visualizing ratios and percentages. It works best for gridded datasets where geometries don't overlap, such as styles for binning (i.e. `forBinning = true`), hexbin layers, or any other layer created with data aggregated to tessellated shapes. This parameter only applies to layers with a `polygon` geometry type, or any layer that has {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureReductionBinning.html binning} enabled. This parameter is ignored if `valueExpression` is specified in lieu of a `field`.
|
|
82536
82539
|
* @param params.filter _Since 4.31_ When defined, only features included in the filter are considered in the attribute and spatial statistics calculations when determining the final renderer. This is useful when a lot of variation exists in the data that could otherwise result in undesired size ranges and stops. A common use case would be to set a filter that only includes features in the current extent of the view where the data is most likely to be viewed.
|
|
82537
82540
|
* @param params.sqlExpression A SQL expression evaluating to a number.
|
|
@@ -82568,6 +82571,22 @@ declare namespace __esri {
|
|
|
82568
82571
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#updateRendererWithReferenceSize Read more...}
|
|
82569
82572
|
*/
|
|
82570
82573
|
updateRendererWithReferenceSize(params: sizeUpdateRendererWithReferenceSizeParams): Promise<ClassBreaksRenderer | UniqueValueRenderer>;
|
|
82574
|
+
/**
|
|
82575
|
+
* Updates a renderer that uses a specialty spike variable (i.e.
|
|
82576
|
+
*
|
|
82577
|
+
* @param params Input parameters for updating an existing spike visualization. See the table below for details of each parameter.
|
|
82578
|
+
* @param params.layer The layer for which the renderer is updated.
|
|
82579
|
+
* @param params.renderer The renderer instance to update if not already set on the `layer`.
|
|
82580
|
+
* @param params.field The name of a numeric field used to dynamically change the spike height.
|
|
82581
|
+
* @param params.normalizationField The name of a numeric field use to normalize the data in the input `field`.
|
|
82582
|
+
* @param params.sizeStops The size stops with which to update the spike visualization. These values typically come from {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SizeSlider.html#stops SizeSlider.stops}.
|
|
82583
|
+
* @param params.sizeScheme Use this property to update the color of the symbols.
|
|
82584
|
+
* @param params.typeScheme Only valid for spike visualizations implemented in a UniqueValueRenderer. The scheme updates the colors of each category.
|
|
82585
|
+
* @param params.forBinning Indicates whether the renderer is intended for a binning visualization. If `true`, then the input field(s) in this method should refer to {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-AggregateField.html aggregate fields} defined in the `featureReduction` property of the layer.
|
|
82586
|
+
*
|
|
82587
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#updateRendererWithSpike Read more...}
|
|
82588
|
+
*/
|
|
82589
|
+
updateRendererWithSpike(params: sizeUpdateRendererWithSpikeParams): Promise<ClassBreaksRenderer | UniqueValueRenderer>;
|
|
82571
82590
|
}
|
|
82572
82591
|
|
|
82573
82592
|
export const size: size;
|
|
@@ -82717,7 +82736,7 @@ declare namespace __esri {
|
|
|
82717
82736
|
sizeScheme?: SizeScheme;
|
|
82718
82737
|
valueExpression?: string;
|
|
82719
82738
|
valueExpressionTitle?: string;
|
|
82720
|
-
theme?: "high-to-low" | "above" | "below" | "reference-size";
|
|
82739
|
+
theme?: "high-to-low" | "above" | "below" | "reference-size" | "spike";
|
|
82721
82740
|
referenceSizeOptions?: sizeCreateContinuousRendererParamsReferenceSizeOptions;
|
|
82722
82741
|
filter?: FeatureFilter;
|
|
82723
82742
|
sqlExpression?: string;
|
|
@@ -82763,7 +82782,7 @@ declare namespace __esri {
|
|
|
82763
82782
|
sizeScheme?: SizeScheme;
|
|
82764
82783
|
valueExpression?: string;
|
|
82765
82784
|
valueExpressionTitle?: string;
|
|
82766
|
-
theme?: "high-to-low" | "above" | "below";
|
|
82785
|
+
theme?: "high-to-low" | "above" | "below" | "reference-size" | "spike";
|
|
82767
82786
|
referenceSizeOptions?: sizeCreateVisualVariablesParamsReferenceSizeOptions;
|
|
82768
82787
|
filter?: FeatureFilter;
|
|
82769
82788
|
sqlExpression?: string;
|
|
@@ -82818,6 +82837,29 @@ declare namespace __esri {
|
|
|
82818
82837
|
symbolStyle: "circle" | "diamond" | "hexagon-flat" | "hexagon-pointy" | "square";
|
|
82819
82838
|
}
|
|
82820
82839
|
|
|
82840
|
+
export interface sizeUpdateRendererWithSpikeParams {
|
|
82841
|
+
layer: | FeatureLayer
|
|
82842
|
+
| SceneLayer
|
|
82843
|
+
| CSVLayer
|
|
82844
|
+
| GeoJSONLayer
|
|
82845
|
+
| ParquetLayer
|
|
82846
|
+
| WFSLayer
|
|
82847
|
+
| OGCFeatureLayer
|
|
82848
|
+
| StreamLayer
|
|
82849
|
+
| OrientedImageryLayer
|
|
82850
|
+
| CatalogFootprintLayer
|
|
82851
|
+
| KnowledgeGraphSublayer
|
|
82852
|
+
| SubtypeGroupLayer
|
|
82853
|
+
| SubtypeSublayer;
|
|
82854
|
+
renderer?: ClassBreaksRenderer | UniqueValueRenderer;
|
|
82855
|
+
field?: string;
|
|
82856
|
+
normalizationField?: string;
|
|
82857
|
+
sizeStops: SizeStop[];
|
|
82858
|
+
sizeScheme?: SizeScheme;
|
|
82859
|
+
typeScheme?: TypeScheme;
|
|
82860
|
+
forBinning?: boolean;
|
|
82861
|
+
}
|
|
82862
|
+
|
|
82821
82863
|
/**
|
|
82822
82864
|
* The result object of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-size.html#createVisualVariables createVisualVariables()} method.
|
|
82823
82865
|
*
|
|
@@ -105734,7 +105776,7 @@ declare namespace __esri {
|
|
|
105734
105776
|
*/
|
|
105735
105777
|
view: SceneView | nullish;
|
|
105736
105778
|
/**
|
|
105737
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-AreaMeasurement3D.html AreaMeasurement3D} widget.
|
|
105779
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-AreaMeasurement3D.html AreaMeasurement3D} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-area-measurement-3d/ component}.
|
|
105738
105780
|
*
|
|
105739
105781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-AreaMeasurement3D-AreaMeasurement3DViewModel.html Read more...}
|
|
105740
105782
|
*/
|
|
@@ -106928,7 +106970,7 @@ declare namespace __esri {
|
|
|
106928
106970
|
*/
|
|
106929
106971
|
view: MapView | SceneView | nullish;
|
|
106930
106972
|
/**
|
|
106931
|
-
* Provides logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html BasemapLayerList} widget.
|
|
106973
|
+
* Provides logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html BasemapLayerList} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-basemap-layer-list/ component}.
|
|
106932
106974
|
*
|
|
106933
106975
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html Read more...}
|
|
106934
106976
|
*/
|
|
@@ -107675,7 +107717,7 @@ declare namespace __esri {
|
|
|
107675
107717
|
*/
|
|
107676
107718
|
view: MapView | SceneView | nullish;
|
|
107677
107719
|
/**
|
|
107678
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html Bookmarks} widget.
|
|
107720
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html Bookmarks} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-bookmarks/ component}.
|
|
107679
107721
|
*
|
|
107680
107722
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html Read more...}
|
|
107681
107723
|
*/
|
|
@@ -107998,7 +108040,7 @@ declare namespace __esri {
|
|
|
107998
108040
|
*/
|
|
107999
108041
|
view: SceneView | nullish;
|
|
108000
108042
|
/**
|
|
108001
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer.html BuildingExplorer} widget.
|
|
108043
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer.html BuildingExplorer} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-building-explorer/ component}.
|
|
108002
108044
|
*
|
|
108003
108045
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingExplorerViewModel.html Read more...}
|
|
108004
108046
|
*/
|
|
@@ -108548,7 +108590,7 @@ declare namespace __esri {
|
|
|
108548
108590
|
*/
|
|
108549
108591
|
view: MapView | SceneView | nullish;
|
|
108550
108592
|
/**
|
|
108551
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html CatalogLayerList} widget.
|
|
108593
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html CatalogLayerList} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-catalog-layer-list/ component}.
|
|
108552
108594
|
*
|
|
108553
108595
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html Read more...}
|
|
108554
108596
|
*/
|
|
@@ -108797,7 +108839,7 @@ declare namespace __esri {
|
|
|
108797
108839
|
*/
|
|
108798
108840
|
view: MapView | SceneView | nullish;
|
|
108799
108841
|
/**
|
|
108800
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Compass.html Compass} widget.
|
|
108842
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Compass.html Compass} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-compass/ component}.
|
|
108801
108843
|
*
|
|
108802
108844
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Compass-CompassViewModel.html Read more...}
|
|
108803
108845
|
*/
|
|
@@ -109138,7 +109180,7 @@ declare namespace __esri {
|
|
|
109138
109180
|
*/
|
|
109139
109181
|
view: MapView | SceneView | nullish;
|
|
109140
109182
|
/**
|
|
109141
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CoordinateConversion.html CoordinateConversion} widget.
|
|
109183
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CoordinateConversion.html CoordinateConversion} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-coordinate-conversion/ component}.
|
|
109142
109184
|
*
|
|
109143
109185
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CoordinateConversion-CoordinateConversionViewModel.html Read more...}
|
|
109144
109186
|
*/
|
|
@@ -109700,7 +109742,7 @@ declare namespace __esri {
|
|
|
109700
109742
|
*/
|
|
109701
109743
|
yearPlaying: boolean;
|
|
109702
109744
|
/**
|
|
109703
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Daylight.html Daylight} widget.
|
|
109745
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Daylight.html Daylight} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-daylight/ component}.
|
|
109704
109746
|
*
|
|
109705
109747
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Daylight-DaylightViewModel.html Read more...}
|
|
109706
109748
|
*/
|
|
@@ -109933,7 +109975,7 @@ declare namespace __esri {
|
|
|
109933
109975
|
*/
|
|
109934
109976
|
view: MapView | nullish;
|
|
109935
109977
|
/**
|
|
109936
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectionalPad.html DirectionalPad} widget.
|
|
109978
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectionalPad.html DirectionalPad} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-directional-pad/ component}.
|
|
109937
109979
|
*
|
|
109938
109980
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectionalPad-DirectionalPadViewModel.html Read more...}
|
|
109939
109981
|
*/
|
|
@@ -110302,7 +110344,7 @@ declare namespace __esri {
|
|
|
110302
110344
|
*/
|
|
110303
110345
|
view: MapView | SceneView | nullish;
|
|
110304
110346
|
/**
|
|
110305
|
-
* Provides the communication and data manipulation logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html Directions} widget.
|
|
110347
|
+
* Provides the communication and data manipulation logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html Directions} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-directions/ component}.
|
|
110306
110348
|
*
|
|
110307
110349
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions-DirectionsViewModel.html Read more...}
|
|
110308
110350
|
*/
|
|
@@ -110676,7 +110718,7 @@ declare namespace __esri {
|
|
|
110676
110718
|
*/
|
|
110677
110719
|
view: SceneView | nullish;
|
|
110678
110720
|
/**
|
|
110679
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectLineMeasurement3D.html DirectLineMeasurement3D} widget.
|
|
110721
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectLineMeasurement3D.html DirectLineMeasurement3D} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-directline-measurement-3d/ component}.
|
|
110680
110722
|
*
|
|
110681
110723
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DirectLineMeasurement3D-DirectLineMeasurement3DViewModel.html Read more...}
|
|
110682
110724
|
*/
|
|
@@ -110880,7 +110922,7 @@ declare namespace __esri {
|
|
|
110880
110922
|
*/
|
|
110881
110923
|
view: MapView | nullish;
|
|
110882
110924
|
/**
|
|
110883
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D.html DistanceMeasurement2D} widget.
|
|
110925
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D.html DistanceMeasurement2D} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-distance-measurement-2d/ component}.
|
|
110884
110926
|
*
|
|
110885
110927
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D-DistanceMeasurement2DViewModel.html Read more...}
|
|
110886
110928
|
*/
|
|
@@ -111363,7 +111405,7 @@ declare namespace __esri {
|
|
|
111363
111405
|
*/
|
|
111364
111406
|
view: MapView | SceneView | nullish;
|
|
111365
111407
|
/**
|
|
111366
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html Editor} widget.
|
|
111408
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html Editor} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-editor/ component}.
|
|
111367
111409
|
*
|
|
111368
111410
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html Read more...}
|
|
111369
111411
|
*/
|
|
@@ -113140,7 +113182,7 @@ declare namespace __esri {
|
|
|
113140
113182
|
*/
|
|
113141
113183
|
view: MapView | SceneView | nullish;
|
|
113142
113184
|
/**
|
|
113143
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html Expand} widget.
|
|
113185
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html Expand} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-expand/ component}.
|
|
113144
113186
|
*
|
|
113145
113187
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand-ExpandViewModel.html Read more...}
|
|
113146
113188
|
*/
|
|
@@ -113479,7 +113521,7 @@ declare namespace __esri {
|
|
|
113479
113521
|
*/
|
|
113480
113522
|
readonly waitingForContent: boolean;
|
|
113481
113523
|
/**
|
|
113482
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html Feature} widget.
|
|
113524
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html Feature} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-feature/ component}.
|
|
113483
113525
|
*
|
|
113484
113526
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureViewModel.html Read more...}
|
|
113485
113527
|
*/
|
|
@@ -115136,7 +115178,7 @@ declare namespace __esri {
|
|
|
115136
115178
|
*/
|
|
115137
115179
|
readonly waitingForResult: boolean;
|
|
115138
115180
|
/**
|
|
115139
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html Features} widget.
|
|
115181
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html Features} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-features/ component}.
|
|
115140
115182
|
*
|
|
115141
115183
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html Read more...}
|
|
115142
115184
|
*/
|
|
@@ -116938,7 +116980,7 @@ declare namespace __esri {
|
|
|
116938
116980
|
*/
|
|
116939
116981
|
view: MapView | SceneView | nullish;
|
|
116940
116982
|
/**
|
|
116941
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget, which allows users to view content from feature attributes in a tabular format.
|
|
116983
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-feature-table/ component}, which allows users to view content from feature attributes in a tabular format.
|
|
116942
116984
|
*
|
|
116943
116985
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html Read more...}
|
|
116944
116986
|
*/
|
|
@@ -119663,7 +119705,7 @@ declare namespace __esri {
|
|
|
119663
119705
|
*/
|
|
119664
119706
|
view: MapView | SceneView | nullish;
|
|
119665
119707
|
/**
|
|
119666
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FloorFilter.html FloorFilter} widget.
|
|
119708
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FloorFilter.html FloorFilter} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-floor-filter/ component}.
|
|
119667
119709
|
*
|
|
119668
119710
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FloorFilter-FloorFilterViewModel.html Read more...}
|
|
119669
119711
|
*/
|
|
@@ -121163,7 +121205,7 @@ declare namespace __esri {
|
|
|
121163
121205
|
*/
|
|
121164
121206
|
view: MapView | SceneView | nullish;
|
|
121165
121207
|
/**
|
|
121166
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html LayerList} widget.
|
|
121208
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html LayerList} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-layer-list/ component}.
|
|
121167
121209
|
*
|
|
121168
121210
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-LayerListViewModel.html Read more...}
|
|
121169
121211
|
*/
|
|
@@ -121961,7 +122003,7 @@ declare namespace __esri {
|
|
|
121961
122003
|
*/
|
|
121962
122004
|
view: MapView | SceneView | nullish;
|
|
121963
122005
|
/**
|
|
121964
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html Legend} widget,
|
|
122006
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html Legend} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-legend/ component},
|
|
121965
122007
|
* which displays a label and symbol for interpreting the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html Renderer}
|
|
121966
122008
|
* of each layer in a map.
|
|
121967
122009
|
*
|
|
@@ -122616,7 +122658,7 @@ declare namespace __esri {
|
|
|
122616
122658
|
*/
|
|
122617
122659
|
view: SceneView;
|
|
122618
122660
|
/**
|
|
122619
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LineOfSight.html LineOfSight} widget.
|
|
122661
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LineOfSight.html LineOfSight} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-line-of-sight/ component}.
|
|
122620
122662
|
*
|
|
122621
122663
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LineOfSight-LineOfSightViewModel.html Read more...}
|
|
122622
122664
|
*/
|
|
@@ -122733,7 +122775,7 @@ declare namespace __esri {
|
|
|
122733
122775
|
*/
|
|
122734
122776
|
view: LinkChartView | nullish;
|
|
122735
122777
|
/**
|
|
122736
|
-
* Provides the logic for the
|
|
122778
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-link-chart-layout-switcher/ Link Chart Layout Switcher component} that
|
|
122737
122779
|
* switches the layout of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html LinkChartView}.
|
|
122738
122780
|
*
|
|
122739
122781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LinkChartLayoutSwitcher-LinkChartLayoutSwitcherViewModel.html Read more...}
|
|
@@ -123470,7 +123512,7 @@ declare namespace __esri {
|
|
|
123470
123512
|
*/
|
|
123471
123513
|
view: SceneView | nullish;
|
|
123472
123514
|
/**
|
|
123473
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-NavigationToggle.html NavigationToggle} widget, which
|
|
123515
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-NavigationToggle.html NavigationToggle} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-navigation-toggle/ component}, which
|
|
123474
123516
|
* provides two simple buttons for toggling the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-NavigationToggle-NavigationToggleViewModel.html#navigationMode navigation mode}
|
|
123475
123517
|
* of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html SceneView}.
|
|
123476
123518
|
*
|
|
@@ -123800,7 +123842,7 @@ declare namespace __esri {
|
|
|
123800
123842
|
*/
|
|
123801
123843
|
sharpness: number;
|
|
123802
123844
|
/**
|
|
123803
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-OrientedImageryViewer.html OrientedImageryViewer} widget.
|
|
123845
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-OrientedImageryViewer.html OrientedImageryViewer} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-oriented-imagery-viewer/ component}.
|
|
123804
123846
|
*
|
|
123805
123847
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-OrientedImageryViewer-OrientedImageryViewerViewModel.html Read more...}
|
|
123806
123848
|
*/
|
|
@@ -124686,6 +124728,12 @@ declare namespace __esri {
|
|
|
124686
124728
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
|
|
124687
124729
|
*/
|
|
124688
124730
|
format: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz" | nullish;
|
|
124731
|
+
/**
|
|
124732
|
+
* Unique id for the template.
|
|
124733
|
+
*
|
|
124734
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#id Read more...}
|
|
124735
|
+
*/
|
|
124736
|
+
readonly id: string;
|
|
124689
124737
|
/**
|
|
124690
124738
|
* The text that appears inside the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print Widget's} `Select template` button.
|
|
124691
124739
|
*
|
|
@@ -124707,12 +124755,48 @@ declare namespace __esri {
|
|
|
124707
124755
|
| "tabloid-ansi-b-landscape"
|
|
124708
124756
|
| "tabloid-ansi-b-portrait"
|
|
124709
124757
|
| nullish;
|
|
124758
|
+
/**
|
|
124759
|
+
* The portal item associated with layout (if any).
|
|
124760
|
+
*
|
|
124761
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#layoutItem Read more...}
|
|
124762
|
+
*/
|
|
124763
|
+
readonly layoutItem: PortalItem | nullish;
|
|
124710
124764
|
/**
|
|
124711
124765
|
* Defines the layout elements.
|
|
124712
124766
|
*
|
|
124713
124767
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#layoutOptions Read more...}
|
|
124714
124768
|
*/
|
|
124715
124769
|
readonly layoutOptions: CustomTemplateLayoutOptions | nullish;
|
|
124770
|
+
/**
|
|
124771
|
+
* Defines the layout template info for the layout item.
|
|
124772
|
+
*
|
|
124773
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#layoutTemplateInfo Read more...}
|
|
124774
|
+
*/
|
|
124775
|
+
readonly layoutTemplateInfo: CustomTemplateLayoutTemplateInfo | nullish;
|
|
124776
|
+
/**
|
|
124777
|
+
* This object returns settings for a legend, north arrow and scale bar (if any).
|
|
124778
|
+
*
|
|
124779
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#mapSurroundInfoOptions Read more...}
|
|
124780
|
+
*/
|
|
124781
|
+
readonly mapSurroundInfoOptions: CustomTemplateMapSurroundInfoOptions | nullish;
|
|
124782
|
+
/**
|
|
124783
|
+
* The pageUnits from layoutTemplateInfo.
|
|
124784
|
+
*
|
|
124785
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#pageUnits Read more...}
|
|
124786
|
+
*/
|
|
124787
|
+
readonly pageUnits: any | nullish;
|
|
124788
|
+
/**
|
|
124789
|
+
* Loading state of the template.
|
|
124790
|
+
*
|
|
124791
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#state Read more...}
|
|
124792
|
+
*/
|
|
124793
|
+
readonly state: "loaded" | "not-loaded" | "loading" | "error";
|
|
124794
|
+
/**
|
|
124795
|
+
* The type of CustomTemplate.
|
|
124796
|
+
*
|
|
124797
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#type Read more...}
|
|
124798
|
+
*/
|
|
124799
|
+
readonly type: "browse-template" | "default-template" | "print-service-template" | nullish;
|
|
124716
124800
|
/**
|
|
124717
124801
|
* Defines the custom layout template options used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget
|
|
124718
124802
|
* to generate the print page.
|
|
@@ -124736,6 +124820,27 @@ declare namespace __esri {
|
|
|
124736
124820
|
northArrow?: boolean | nullish;
|
|
124737
124821
|
}
|
|
124738
124822
|
|
|
124823
|
+
export interface CustomTemplateLayoutTemplateInfo {
|
|
124824
|
+
pageSize?: number[];
|
|
124825
|
+
pageUnits?: string;
|
|
124826
|
+
layoutOptions?: CustomTemplateLayoutTemplateInfoLayoutOptions;
|
|
124827
|
+
}
|
|
124828
|
+
|
|
124829
|
+
export interface CustomTemplateLayoutTemplateInfoLayoutOptions {
|
|
124830
|
+
hasTitleText?: boolean;
|
|
124831
|
+
hasAuthorText?: boolean;
|
|
124832
|
+
hasCopyrightText?: boolean;
|
|
124833
|
+
hasLegend?: boolean;
|
|
124834
|
+
customTextElements?: any[];
|
|
124835
|
+
mapSurroundInfos?: any;
|
|
124836
|
+
}
|
|
124837
|
+
|
|
124838
|
+
export interface CustomTemplateMapSurroundInfoOptions {
|
|
124839
|
+
legend?: any | nullish;
|
|
124840
|
+
northArrow?: any | nullish;
|
|
124841
|
+
scaleBar?: any | nullish;
|
|
124842
|
+
}
|
|
124843
|
+
|
|
124739
124844
|
export class PrintViewModel extends Accessor {
|
|
124740
124845
|
/**
|
|
124741
124846
|
* Specify the print output file format(s) that the user can select based on the options available from the print service.
|
|
@@ -124753,6 +124858,18 @@ declare namespace __esri {
|
|
|
124753
124858
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#allowedLayouts Read more...}
|
|
124754
124859
|
*/
|
|
124755
124860
|
allowedLayouts: string | string[];
|
|
124861
|
+
/**
|
|
124862
|
+
* A collection of print templates defined on the Portal.
|
|
124863
|
+
*
|
|
124864
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#browseTemplates Read more...}
|
|
124865
|
+
*/
|
|
124866
|
+
readonly browseTemplates: Collection<CustomTemplate>;
|
|
124867
|
+
/**
|
|
124868
|
+
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html template} which defines the default print template.
|
|
124869
|
+
*
|
|
124870
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#defaultTemplate Read more...}
|
|
124871
|
+
*/
|
|
124872
|
+
readonly defaultTemplate: CustomTemplate | nullish;
|
|
124756
124873
|
/**
|
|
124757
124874
|
* A collection of print templates defined on the Portal.
|
|
124758
124875
|
*
|
|
@@ -124772,6 +124889,12 @@ declare namespace __esri {
|
|
|
124772
124889
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#effectiveTemplateCustomTextElements Read more...}
|
|
124773
124890
|
*/
|
|
124774
124891
|
readonly effectiveTemplateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
124892
|
+
/**
|
|
124893
|
+
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html error} that occurred during printing.
|
|
124894
|
+
*
|
|
124895
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#error Read more...}
|
|
124896
|
+
*/
|
|
124897
|
+
readonly error: Error | nullish;
|
|
124775
124898
|
/**
|
|
124776
124899
|
* This option allows passing extra parameters to the print (export webmap) requests.
|
|
124777
124900
|
*
|
|
@@ -124786,6 +124909,18 @@ declare namespace __esri {
|
|
|
124786
124909
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#includeDefaultTemplates Read more...}
|
|
124787
124910
|
*/
|
|
124788
124911
|
includeDefaultTemplates: boolean;
|
|
124912
|
+
/**
|
|
124913
|
+
* An array of portalItem Ids that are used to identify the print templates using layoutItem Id.
|
|
124914
|
+
*
|
|
124915
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#portalTemplateIds Read more...}
|
|
124916
|
+
*/
|
|
124917
|
+
readonly portalTemplateIds: string[];
|
|
124918
|
+
/**
|
|
124919
|
+
* A collection of print templates defined on the Portal.
|
|
124920
|
+
*
|
|
124921
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#printServiceTemplates Read more...}
|
|
124922
|
+
*/
|
|
124923
|
+
readonly printServiceTemplates: Collection<CustomTemplate>;
|
|
124789
124924
|
/**
|
|
124790
124925
|
* The URL of the REST endpoint of the Export Web Map Task.
|
|
124791
124926
|
*
|
|
@@ -124829,7 +124964,7 @@ declare namespace __esri {
|
|
|
124829
124964
|
*
|
|
124830
124965
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templatesInfo Read more...}
|
|
124831
124966
|
*/
|
|
124832
|
-
readonly templatesInfo:
|
|
124967
|
+
readonly templatesInfo: PrintViewModelTemplatesInfo | nullish;
|
|
124833
124968
|
/**
|
|
124834
124969
|
* The time interval in milliseconds between each job status request sent to an asynchronous GP task.
|
|
124835
124970
|
*
|
|
@@ -124845,11 +124980,26 @@ declare namespace __esri {
|
|
|
124845
124980
|
*/
|
|
124846
124981
|
view: MapView | nullish;
|
|
124847
124982
|
/**
|
|
124848
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget.
|
|
124983
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-print/ component}.
|
|
124849
124984
|
*
|
|
124850
124985
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html Read more...}
|
|
124851
124986
|
*/
|
|
124852
124987
|
constructor(properties?: PrintViewModelProperties);
|
|
124988
|
+
/**
|
|
124989
|
+
* The collection of links exported from Print.
|
|
124990
|
+
*
|
|
124991
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#exportedLinks Read more...}
|
|
124992
|
+
*/
|
|
124993
|
+
get exportedLinks(): Collection<FileLink>;
|
|
124994
|
+
set exportedLinks(value: CollectionProperties<FileLinkProperties>);
|
|
124995
|
+
/**
|
|
124996
|
+
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-SpatialReference.html spatial reference} used to render
|
|
124997
|
+
* the printed map on the server.
|
|
124998
|
+
*
|
|
124999
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#outSpatialReference Read more...}
|
|
125000
|
+
*/
|
|
125001
|
+
get outSpatialReference(): SpatialReference | nullish;
|
|
125002
|
+
set outSpatialReference(value: SpatialReferenceProperties | nullish);
|
|
124853
125003
|
/**
|
|
124854
125004
|
* It is possible to search a specified portal instance's [locator services](https://enterprise.arcgis.com/en/portal/latest/administer/windows/configure-portal-to-geocode-addresses.htm).
|
|
124855
125005
|
*
|
|
@@ -124857,6 +125007,45 @@ declare namespace __esri {
|
|
|
124857
125007
|
*/
|
|
124858
125008
|
get portal(): Portal;
|
|
124859
125009
|
set portal(value: PortalProperties);
|
|
125010
|
+
/**
|
|
125011
|
+
* Defines the layout template options to generate the print page.
|
|
125012
|
+
*
|
|
125013
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateOptions Read more...}
|
|
125014
|
+
*/
|
|
125015
|
+
get templateOptions(): TemplateOptions;
|
|
125016
|
+
set templateOptions(value: TemplateOptionsProperties);
|
|
125017
|
+
/**
|
|
125018
|
+
* Adds a template to a portal.
|
|
125019
|
+
*
|
|
125020
|
+
* @param portalItem The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-PortalItem.html PortalItem} used to create a print template. This template will be added to the `browseTemplates` collection.
|
|
125021
|
+
*
|
|
125022
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#addPortalTemplate Read more...}
|
|
125023
|
+
*/
|
|
125024
|
+
addPortalTemplate(portalItem: PortalItem | nullish): Promise<void>;
|
|
125025
|
+
/**
|
|
125026
|
+
* Applies the specified print template to the `templateOptions` property.
|
|
125027
|
+
*
|
|
125028
|
+
* @param template The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html CustomTemplate} will be applied.
|
|
125029
|
+
*
|
|
125030
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#applyTemplate Read more...}
|
|
125031
|
+
*/
|
|
125032
|
+
applyTemplate(template: CustomTemplate | "map-only" | nullish): Promise<void>;
|
|
125033
|
+
/**
|
|
125034
|
+
* Creates a new {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#FileLink FileLink} object for the given file name.
|
|
125035
|
+
*
|
|
125036
|
+
* @param fileName The base name of the file to be exported (without extension).
|
|
125037
|
+
*
|
|
125038
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#createExportedFileLink Read more...}
|
|
125039
|
+
*/
|
|
125040
|
+
createExportedFileLink(fileName: string): FileLink;
|
|
125041
|
+
/**
|
|
125042
|
+
* Exports the current print template to a file.
|
|
125043
|
+
*
|
|
125044
|
+
* @param fileName The name of the file to export (without extension).
|
|
125045
|
+
*
|
|
125046
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#export Read more...}
|
|
125047
|
+
*/
|
|
125048
|
+
export(fileName: string): PrintExport;
|
|
124860
125049
|
/**
|
|
124861
125050
|
* Returns a CustomTemplate with the specified `id`.
|
|
124862
125051
|
*
|
|
@@ -124879,6 +125068,22 @@ declare namespace __esri {
|
|
|
124879
125068
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#print Read more...}
|
|
124880
125069
|
*/
|
|
124881
125070
|
print(template: PrintTemplate): Promise<any>;
|
|
125071
|
+
/**
|
|
125072
|
+
* Removes Template from `browseTemplates`.
|
|
125073
|
+
*
|
|
125074
|
+
* @param template The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html CustomTemplate} will be removed.
|
|
125075
|
+
*
|
|
125076
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#removePortalTemplate Read more...}
|
|
125077
|
+
*/
|
|
125078
|
+
removePortalTemplate(template: CustomTemplate | nullish): void;
|
|
125079
|
+
/**
|
|
125080
|
+
* Helper method to create print templates from a template options object.
|
|
125081
|
+
*
|
|
125082
|
+
* @param templateOptions
|
|
125083
|
+
*
|
|
125084
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#toPrintTemplate Read more...}
|
|
125085
|
+
*/
|
|
125086
|
+
toPrintTemplate(templateOptions: TemplateOptions): PrintTemplate;
|
|
124882
125087
|
}
|
|
124883
125088
|
|
|
124884
125089
|
interface PrintViewModelProperties {
|
|
@@ -124894,6 +125099,12 @@ declare namespace __esri {
|
|
|
124894
125099
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#allowedLayouts Read more...}
|
|
124895
125100
|
*/
|
|
124896
125101
|
allowedLayouts?: string | string[];
|
|
125102
|
+
/**
|
|
125103
|
+
* The collection of links exported from Print.
|
|
125104
|
+
*
|
|
125105
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#exportedLinks Read more...}
|
|
125106
|
+
*/
|
|
125107
|
+
exportedLinks?: CollectionProperties<FileLinkProperties>;
|
|
124897
125108
|
/**
|
|
124898
125109
|
* This option allows passing extra parameters to the print (export webmap) requests.
|
|
124899
125110
|
*
|
|
@@ -124906,6 +125117,13 @@ declare namespace __esri {
|
|
|
124906
125117
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#includeDefaultTemplates Read more...}
|
|
124907
125118
|
*/
|
|
124908
125119
|
includeDefaultTemplates?: boolean;
|
|
125120
|
+
/**
|
|
125121
|
+
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-SpatialReference.html spatial reference} used to render
|
|
125122
|
+
* the printed map on the server.
|
|
125123
|
+
*
|
|
125124
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#outSpatialReference Read more...}
|
|
125125
|
+
*/
|
|
125126
|
+
outSpatialReference?: SpatialReferenceProperties | nullish;
|
|
124909
125127
|
/**
|
|
124910
125128
|
* It is possible to search a specified portal instance's [locator services](https://enterprise.arcgis.com/en/portal/latest/administer/windows/configure-portal-to-geocode-addresses.htm).
|
|
124911
125129
|
*
|
|
@@ -124937,6 +125155,12 @@ declare namespace __esri {
|
|
|
124937
125155
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
|
|
124938
125156
|
*/
|
|
124939
125157
|
templateCustomTextElements?: HashMap<HashMap<string>[]> | nullish;
|
|
125158
|
+
/**
|
|
125159
|
+
* Defines the layout template options to generate the print page.
|
|
125160
|
+
*
|
|
125161
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateOptions Read more...}
|
|
125162
|
+
*/
|
|
125163
|
+
templateOptions?: TemplateOptionsProperties;
|
|
124940
125164
|
/**
|
|
124941
125165
|
* The time interval in milliseconds between each job status request sent to an asynchronous GP task.
|
|
124942
125166
|
*
|
|
@@ -124951,6 +125175,31 @@ declare namespace __esri {
|
|
|
124951
125175
|
view?: MapView | nullish;
|
|
124952
125176
|
}
|
|
124953
125177
|
|
|
125178
|
+
/**
|
|
125179
|
+
* The printed export.
|
|
125180
|
+
*
|
|
125181
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-print-PrintViewModel_.html#PrintExport Read more...}
|
|
125182
|
+
*/
|
|
125183
|
+
export interface PrintExport {
|
|
125184
|
+
link: FileLink;
|
|
125185
|
+
promise: Promise<FileLink>;
|
|
125186
|
+
}
|
|
125187
|
+
|
|
125188
|
+
export interface PrintViewModelTemplatesInfo {
|
|
125189
|
+
format?: PrintViewModelTemplatesInfoFormat;
|
|
125190
|
+
layout?: PrintViewModelTemplatesInfoLayout;
|
|
125191
|
+
}
|
|
125192
|
+
|
|
125193
|
+
export interface PrintViewModelTemplatesInfoFormat {
|
|
125194
|
+
choiceList?: string[];
|
|
125195
|
+
defaultValue?: string;
|
|
125196
|
+
}
|
|
125197
|
+
|
|
125198
|
+
export interface PrintViewModelTemplatesInfoLayout {
|
|
125199
|
+
choiceList?: string[];
|
|
125200
|
+
defaultValue?: string;
|
|
125201
|
+
}
|
|
125202
|
+
|
|
124954
125203
|
export class TemplateOptions extends Accessor {
|
|
124955
125204
|
/**
|
|
124956
125205
|
* When `false`, the attribution is not displayed on the printout.
|
|
@@ -125015,6 +125264,12 @@ declare namespace __esri {
|
|
|
125015
125264
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#height Read more...}
|
|
125016
125265
|
*/
|
|
125017
125266
|
height: number | nullish;
|
|
125267
|
+
/**
|
|
125268
|
+
* Unique id of the template.
|
|
125269
|
+
*
|
|
125270
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#id Read more...}
|
|
125271
|
+
*/
|
|
125272
|
+
readonly id: string | nullish;
|
|
125018
125273
|
/**
|
|
125019
125274
|
* When `true`, tables will be included in the printout request.
|
|
125020
125275
|
*
|
|
@@ -125058,6 +125313,12 @@ declare namespace __esri {
|
|
|
125058
125313
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#scale Read more...}
|
|
125059
125314
|
*/
|
|
125060
125315
|
scale: number | nullish;
|
|
125316
|
+
/**
|
|
125317
|
+
* When `true`, the scale bar will be included on the printout.
|
|
125318
|
+
*
|
|
125319
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#scaleBarEnabled Read more...}
|
|
125320
|
+
*/
|
|
125321
|
+
scaleBarEnabled: boolean | nullish;
|
|
125061
125322
|
/**
|
|
125062
125323
|
* Define whether the printed map should preserve map scale or map extent.
|
|
125063
125324
|
*
|
|
@@ -125066,6 +125327,12 @@ declare namespace __esri {
|
|
|
125066
125327
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#scaleEnabled Read more...}
|
|
125067
125328
|
*/
|
|
125068
125329
|
scaleEnabled: boolean;
|
|
125330
|
+
/**
|
|
125331
|
+
* The state of the template loading.
|
|
125332
|
+
*
|
|
125333
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#state Read more...}
|
|
125334
|
+
*/
|
|
125335
|
+
readonly state: "ready" | "pending" | "error";
|
|
125069
125336
|
/**
|
|
125070
125337
|
* The text used for the map title if the specified layout contains a title text element.
|
|
125071
125338
|
*
|
|
@@ -125194,6 +125461,12 @@ declare namespace __esri {
|
|
|
125194
125461
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#scale Read more...}
|
|
125195
125462
|
*/
|
|
125196
125463
|
scale?: number | nullish;
|
|
125464
|
+
/**
|
|
125465
|
+
* When `true`, the scale bar will be included on the printout.
|
|
125466
|
+
*
|
|
125467
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#scaleBarEnabled Read more...}
|
|
125468
|
+
*/
|
|
125469
|
+
scaleBarEnabled?: boolean | nullish;
|
|
125197
125470
|
/**
|
|
125198
125471
|
* Define whether the printed map should preserve map scale or map extent.
|
|
125199
125472
|
*
|
|
@@ -125230,6 +125503,8 @@ declare namespace __esri {
|
|
|
125230
125503
|
name?: string | nullish;
|
|
125231
125504
|
state?: "ready" | "error" | "pending";
|
|
125232
125505
|
url?: string;
|
|
125506
|
+
portalItem?: PortalItemProperties | nullish;
|
|
125507
|
+
formattedName?: string | nullish;
|
|
125233
125508
|
}
|
|
125234
125509
|
|
|
125235
125510
|
/**
|
|
@@ -125238,12 +125513,15 @@ declare namespace __esri {
|
|
|
125238
125513
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#FileLink Read more...}
|
|
125239
125514
|
*/
|
|
125240
125515
|
export interface FileLink extends AnonymousAccessor {
|
|
125516
|
+
get portalItem(): PortalItem | nullish;
|
|
125517
|
+
set portalItem(value: PortalItemProperties | nullish);
|
|
125241
125518
|
count: number | nullish;
|
|
125242
125519
|
error: Error | nullish;
|
|
125243
125520
|
extension: string | nullish;
|
|
125244
125521
|
name: string | nullish;
|
|
125245
125522
|
state: "ready" | "error" | "pending";
|
|
125246
125523
|
url: string;
|
|
125524
|
+
formattedName: string | nullish;
|
|
125247
125525
|
}
|
|
125248
125526
|
|
|
125249
125527
|
export interface PrintSubmitEvent {
|
|
@@ -125694,7 +125972,7 @@ declare namespace __esri {
|
|
|
125694
125972
|
*/
|
|
125695
125973
|
view: MapView | SceneView | nullish;
|
|
125696
125974
|
/**
|
|
125697
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html ScaleRangeSlider} widget.
|
|
125975
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html ScaleRangeSlider} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-scale-range-slider/ component}.
|
|
125698
125976
|
*
|
|
125699
125977
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html Read more...}
|
|
125700
125978
|
*/
|
|
@@ -127275,7 +127553,7 @@ declare namespace __esri {
|
|
|
127275
127553
|
*/
|
|
127276
127554
|
view: MapView | SceneView | nullish;
|
|
127277
127555
|
/**
|
|
127278
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html Search} widget, which performs search
|
|
127556
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html Search} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-search/ component}, which performs search
|
|
127279
127557
|
* operations on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-locator.html locator service(s)},
|
|
127280
127558
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html map}/{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature} service feature
|
|
127281
127559
|
* layer(s), and/or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webdoc-applicationProperties-SearchTable.html table(s)}.
|
|
@@ -128054,7 +128332,7 @@ declare namespace __esri {
|
|
|
128054
128332
|
*/
|
|
128055
128333
|
visualizationType: "threshold" | "duration" | "discrete";
|
|
128056
128334
|
/**
|
|
128057
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ShadowCast.html ShadowCast} widget.
|
|
128335
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ShadowCast.html ShadowCast} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-shadow-cast/ component}.
|
|
128058
128336
|
*
|
|
128059
128337
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ShadowCast-ShadowCastViewModel.html Read more...}
|
|
128060
128338
|
*/
|
|
@@ -128721,7 +128999,7 @@ declare namespace __esri {
|
|
|
128721
128999
|
*/
|
|
128722
129000
|
view: MapView | SceneView | nullish;
|
|
128723
129001
|
/**
|
|
128724
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html Sketch} widget.
|
|
129002
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html Sketch} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-sketch/ component}.
|
|
128725
129003
|
*
|
|
128726
129004
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html Read more...}
|
|
128727
129005
|
*/
|
|
@@ -129596,7 +129874,7 @@ declare namespace __esri {
|
|
|
129596
129874
|
*/
|
|
129597
129875
|
view: SceneView | nullish;
|
|
129598
129876
|
/**
|
|
129599
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slice.html Slice} widget.
|
|
129877
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slice.html Slice} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-slice/ component}.
|
|
129600
129878
|
*
|
|
129601
129879
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slice-SliceViewModel.html Read more...}
|
|
129602
129880
|
*/
|
|
@@ -133531,7 +133809,7 @@ declare namespace __esri {
|
|
|
133531
133809
|
*/
|
|
133532
133810
|
readonly totalItems: number;
|
|
133533
133811
|
/**
|
|
133534
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget.
|
|
133812
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-table-list/ component}.
|
|
133535
133813
|
*
|
|
133536
133814
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html Read more...}
|
|
133537
133815
|
*/
|
|
@@ -133990,7 +134268,7 @@ declare namespace __esri {
|
|
|
133990
134268
|
*/
|
|
133991
134269
|
view: MapView | SceneView | nullish;
|
|
133992
134270
|
/**
|
|
133993
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TimeSlider.html TimeSlider} widget.
|
|
134271
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TimeSlider.html TimeSlider} widget and [component](/references/map-components/arcgis-time-slider/).
|
|
133994
134272
|
*
|
|
133995
134273
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TimeSlider-TimeSliderViewModel.html Read more...}
|
|
133996
134274
|
*/
|
|
@@ -134956,7 +135234,7 @@ declare namespace __esri {
|
|
|
134956
135234
|
*/
|
|
134957
135235
|
view: MapView | nullish;
|
|
134958
135236
|
/**
|
|
134959
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations.html UtilityNetworkAssociations} widget.
|
|
135237
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations.html UtilityNetworkAssociations} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-utility-network-associations/ component}.
|
|
134960
135238
|
*
|
|
134961
135239
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations-UtilityNetworkAssociationsViewModel.html Read more...}
|
|
134962
135240
|
*/
|
|
@@ -135498,7 +135776,7 @@ declare namespace __esri {
|
|
|
135498
135776
|
*/
|
|
135499
135777
|
view: MapView | nullish;
|
|
135500
135778
|
/**
|
|
135501
|
-
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html UtilityNetworkTrace} widget.
|
|
135779
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html UtilityNetworkTrace} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-utility-network-trace/ component}.
|
|
135502
135780
|
*
|
|
135503
135781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html Read more...}
|
|
135504
135782
|
*/
|
|
@@ -136095,12 +136373,6 @@ declare namespace __esri {
|
|
|
136095
136373
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html#view Read more...}
|
|
136096
136374
|
*/
|
|
136097
136375
|
view: MapView | nullish;
|
|
136098
|
-
/**
|
|
136099
|
-
* The view model for this widget.
|
|
136100
|
-
*
|
|
136101
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html#viewModel Read more...}
|
|
136102
|
-
*/
|
|
136103
|
-
viewModel: UtilityNetworkValidateTopologyViewModel;
|
|
136104
136376
|
/**
|
|
136105
136377
|
* The UtilityNetworkValidateTopology widget class, functioning as a part of the ArcGIS Maps SDK for JavaScript,
|
|
136106
136378
|
* simplifies the process of validating a DirtyArea within a utility network.
|
|
@@ -136108,6 +136380,13 @@ declare namespace __esri {
|
|
|
136108
136380
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html Read more...}
|
|
136109
136381
|
*/
|
|
136110
136382
|
constructor(properties?: UtilityNetworkValidateTopologyProperties);
|
|
136383
|
+
/**
|
|
136384
|
+
* The view model for this widget.
|
|
136385
|
+
*
|
|
136386
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html#viewModel Read more...}
|
|
136387
|
+
*/
|
|
136388
|
+
get viewModel(): UtilityNetworkValidateTopologyViewModel;
|
|
136389
|
+
set viewModel(value: UtilityNetworkValidateTopologyViewModelProperties);
|
|
136111
136390
|
}
|
|
136112
136391
|
|
|
136113
136392
|
interface UtilityNetworkValidateTopologyProperties extends WidgetProperties {
|
|
@@ -136146,10 +136425,10 @@ declare namespace __esri {
|
|
|
136146
136425
|
*
|
|
136147
136426
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html#viewModel Read more...}
|
|
136148
136427
|
*/
|
|
136149
|
-
viewModel?:
|
|
136428
|
+
viewModel?: UtilityNetworkValidateTopologyViewModelProperties;
|
|
136150
136429
|
}
|
|
136151
136430
|
|
|
136152
|
-
export class UtilityNetworkValidateTopologyViewModel {
|
|
136431
|
+
export class UtilityNetworkValidateTopologyViewModel extends Accessor {
|
|
136153
136432
|
/**
|
|
136154
136433
|
* If the validation process fails, this property returns an error message.
|
|
136155
136434
|
*
|
|
@@ -136164,12 +136443,6 @@ declare namespace __esri {
|
|
|
136164
136443
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#extentToValidate Read more...}
|
|
136165
136444
|
*/
|
|
136166
136445
|
extentToValidate: "current" | "entire";
|
|
136167
|
-
/**
|
|
136168
|
-
* If an error occurs during during validation a loadError wil be displayed.
|
|
136169
|
-
*
|
|
136170
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#loadErrors Read more...}
|
|
136171
|
-
*/
|
|
136172
|
-
loadErrors: Collection<string>;
|
|
136173
136446
|
/**
|
|
136174
136447
|
* The view model's state.
|
|
136175
136448
|
*
|
|
@@ -136190,7 +136463,19 @@ declare namespace __esri {
|
|
|
136190
136463
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#view Read more...}
|
|
136191
136464
|
*/
|
|
136192
136465
|
view: MapView | nullish;
|
|
136193
|
-
|
|
136466
|
+
/**
|
|
136467
|
+
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology.html UtilityNetworkValidateTopology} widget and {@link https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-utility-network-validate-topology/ component}.
|
|
136468
|
+
*
|
|
136469
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html Read more...}
|
|
136470
|
+
*/
|
|
136471
|
+
constructor(properties?: UtilityNetworkValidateTopologyViewModelProperties);
|
|
136472
|
+
/**
|
|
136473
|
+
* If an error occurs during during validation a loadError wil be displayed.
|
|
136474
|
+
*
|
|
136475
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#loadErrors Read more...}
|
|
136476
|
+
*/
|
|
136477
|
+
get loadErrors(): Collection<string>;
|
|
136478
|
+
set loadErrors(value: CollectionProperties<string>);
|
|
136194
136479
|
/**
|
|
136195
136480
|
* Validates the network topology of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#utilityNetwork utility network}.
|
|
136196
136481
|
*
|
|
@@ -136199,6 +136484,33 @@ declare namespace __esri {
|
|
|
136199
136484
|
validateTopology(): void;
|
|
136200
136485
|
}
|
|
136201
136486
|
|
|
136487
|
+
interface UtilityNetworkValidateTopologyViewModelProperties {
|
|
136488
|
+
/**
|
|
136489
|
+
* Specifies the extent of the validation.
|
|
136490
|
+
*
|
|
136491
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#extentToValidate Read more...}
|
|
136492
|
+
*/
|
|
136493
|
+
extentToValidate?: "current" | "entire";
|
|
136494
|
+
/**
|
|
136495
|
+
* If an error occurs during during validation a loadError wil be displayed.
|
|
136496
|
+
*
|
|
136497
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#loadErrors Read more...}
|
|
136498
|
+
*/
|
|
136499
|
+
loadErrors?: CollectionProperties<string>;
|
|
136500
|
+
/**
|
|
136501
|
+
* Determines the utility network to use.
|
|
136502
|
+
*
|
|
136503
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#utilityNetwork Read more...}
|
|
136504
|
+
*/
|
|
136505
|
+
utilityNetwork?: UtilityNetwork | nullish;
|
|
136506
|
+
/**
|
|
136507
|
+
* The view from which the widget will operate.
|
|
136508
|
+
*
|
|
136509
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkValidateTopology-UtilityNetworkValidateTopologyViewModel.html#view Read more...}
|
|
136510
|
+
*/
|
|
136511
|
+
view?: MapView | nullish;
|
|
136512
|
+
}
|
|
136513
|
+
|
|
136202
136514
|
export class ValuePicker extends Widget {
|
|
136203
136515
|
/**
|
|
136204
136516
|
* Returns `true` if the ValuePicker can be advanced to the next position.
|