GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro Assembly

Namespaces

dymaptic.GeoBlazor.Pro Namespace

Classes  
_Imports  
DependencyExtension Static extension class for injecting GeoBlazor types
MissingConfigurationException Exception thrown when the dymaptic.GeoBlazor.Core.GeoBlazorSettings (email, license key) are missing from your application’s configuration.

dymaptic.GeoBlazor.Pro.Components Namespace

Classes  
ActionColumnConfig GeoBlazor Docs
Configuration for the FeatureTable’s actionColumn.
ArcGIS Maps SDK for JavaScript
AttachmentsCapabilities GeoBlazor Docs
An object that specifies the available attachments capabilities.
ArcGIS Maps SDK for JavaScript
AttachmentsViewModel GeoBlazor Docs
Provides the logic for the Attachments widget.
ArcGIS Maps SDK for JavaScript
AttributeBinsGraphic GeoBlazor Docs
A Graphic returned in a FeatureSet as result of running queryAttributeBins() method.
ArcGIS Maps SDK for JavaScript
AttributeColorInfo GeoBlazor Docs
Defines colors for dots in a DotDensityRenderer,
or colors for pie chart slices in a PieChartRenderer.
ArcGIS Maps SDK for JavaScript
AttributeTableTemplate GeoBlazor Docs
An AttributeTableTemplate manages the configuration of how the FeatureTable widget displays its columns.
ArcGIS Maps SDK for JavaScript
BasemapLayerListCatalogOptionsVisibleElements The visible elements that are displayed within the catalog layer list.
ArcGIS Maps SDK for JavaScript
CatalogFootprintLayerElevationInfo GeoBlazor Docs
Specifies how features are placed on the vertical axis (z).
ArcGIS Maps SDK for JavaScript
CatalogFootprintLayerElevationInfoFeatureExpressionInfo GeoBlazor Docs
Defines how to override a feature’s Z-value based on its attributes.
ArcGIS Maps SDK for JavaScript
CatalogLayerListViewModel GeoBlazor Docs
Provides the logic for the CatalogLayerList widget.
ArcGIS Maps SDK for JavaScript
CatalogLayerListVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
ColumnTableMenuConfig GeoBlazor Docs
Configuration options for the column’s menu.
ArcGIS Maps SDK for JavaScript
ColumnTemplateBase GeoBlazor Docs
The base class for all column templates used by the tableTemplate within the FeatureTable widget.
ArcGIS Maps SDK for JavaScript
Conversion GeoBlazor Docs
The Conversion class represents one of the conversions
in the Coordinate Conversion widget.
ArcGIS Maps SDK for JavaScript
ConversionFormat GeoBlazor Docs
The Format class represents one of the formats
in the Coordinate Conversion widget.
ArcGIS Maps SDK for JavaScript
ConversionInfo GeoBlazor Docs
This object describes how a Format should be projected and formatted for display.
ArcGIS Maps SDK for JavaScript
ConversionPosition GeoBlazor Docs
Describes a point in terms of a location, a Point, and a coordinate, a string.
ArcGIS Maps SDK for JavaScript
CoordinateConversionVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
CoordinateSegment GeoBlazor Docs
A coordinate segment represents one piece of a coordinate string.
ArcGIS Maps SDK for JavaScript
CreateTools The available sketch tools within the widget.
CSVLayerViewProExtensions Pro Extension methods for the CSVLayerView class.
EditorLayerInfo GeoBlazor Docs
Configurations used for setting the layer’s editable preferences within the Editor.
ArcGIS Maps SDK for JavaScript
EditorViewModel GeoBlazor Docs
Provides the logic for the Editor widget.
ArcGIS Maps SDK for JavaScript
EditorViewModelFailures GeoBlazor Docs
An array of objects containing information specific to any failed editing operations.
ArcGIS Maps SDK for JavaScript
EditorWidgetVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
ElevationSampler GeoBlazor Docs
A cache of elevation values created from an elevation service or the GroundView
used for synchronously querying elevation information for geometries.
This class does not have a constructor. You can create an instance of this class by using
ElevationLayer.createElevationSampler()
or Ground.createElevationSampler() methods.
The elevation sampler created from the Ground will sample data from the first elevation layer that has data available.
To control the layer used for elevation sampling and the sampling resolution, use
ElevationLayer.createElevationSampler().
<pre>
map.ground.load()
.then(function() {
// create an elevation sampler from a given extentreturn view.map.ground.createElevationSampler(extent);
})
.then(function(elevationSampler) {
// use the elevation sampler to get z-values for a point, multipoint or polyline geometrylet zEnrichedGeometry = elevationSampler.queryElevation(geometry);
});

</pre>
An instance of this class is also available in GroundView.elevationSampler.
This can be used when the elevation values need to reflect the elevation currently displayed in the view.
<pre>

let elevationSampler = view.groundView.elevationSampler;
// listen for elevation changes in the view
elevationSampler.on('changed', function() {
// enrich geometry with z-values from the elevation displayed in the viewlet zEnrichedGeometry = elevationSampler.queryElevation(point);
});

</pre>
ElevationSamplerDemResolution GeoBlazor Docs
The minimum and maximum resolution of the data in the sampler.
ArcGIS Maps SDK for JavaScript
ExpressionInfo GeoBlazor Docs
The ExpressionInfo class defines the makeup of visibility expressions, required expressions, editable expressions, and value expressions.
ArcGIS Maps SDK for JavaScript
FeatureFormViewModel GeoBlazor Docs
Provides the logic for the FeatureForm widget.
ArcGIS Maps SDK for JavaScript
FeatureLayerViewProExtensions Pro Extension methods for the FeatureLayerView class.
FeatureReductionBinning This class configures binning as a means of reducing and summarizing point features in a FeatureLayer, CSVLayer, GeoJSONLayer, WFSLayer, or OGCFeatureLayer. This feature reduction method spatially groups points into bins in geographic space based on predefined geohashes.
Binning only applies to layers with Point geometries in a MapView. It currently does not apply to layers with polyline and polygon geometries.
ArcGIS Maps SDK for JavaScript
FeatureReductionCluster This class configures clustering as a means of reducing and summarizing point features in a FeatureLayer, CSVLayer, GeoJSONLayer, WFSLayer, or OGCFeatureLayer. This feature reduction method spatially groups points into clusters based on an area of influence defined in screen space (i.e. the clusterRadius). By default, the size of each cluster is proportional to the number of features within the cluster.
Point clustering only applies to layers with Point geometries in a MapView. It does not apply to layers with polyline and polygon geometries.
While this can be thought of as a visualization technique, clustering is actually a method of reducing features in the view. It is therefore independent of the layer’s Renderer. The style, labels, and popup of each cluster summarizes the features it represents.
ArcGIS Maps SDK for JavaScript
FeatureReductionSelection GeoBlazor Docs
Declutters points in the SceneView by thinning overlapping features so no features
intersect on screen.
ArcGIS Maps SDK for JavaScript
FeatureServiceLayerInfo Contains information for a layer in the Feature Service.
ArcGIS Maps SDK for JavaScript
FeatureTableViewModel GeoBlazor Docs
Provides the logic for the FeatureTable widget, which allows users to view content from feature attributes in a tabular format.
ArcGIS Maps SDK for JavaScript
FeatureTableVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
FeatureTemplate GeoBlazor Docs
Feature templates define all the information required to create a new feature in a feature layer.
ArcGIS Maps SDK for JavaScript
FeatureTemplatesViewModel GeoBlazor Docs
Provides the logic for the FeatureTemplates widget.
ArcGIS Maps SDK for JavaScript
FeatureTemplatesVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
FeatureViewModel GeoBlazor Docs
Provides the logic for the Feature widget.
ArcGIS Maps SDK for JavaScript
FeatureViewModelFormattedAttributes GeoBlazor Docs
The formatted attributes calculated from fieldInfo PopupTemplate
content.
default null
ArcGIS Maps SDK for JavaScript
FeatureVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget’s graphic.popupTemplate.content.
ArcGIS Maps SDK for JavaScript
FieldElement GeoBlazor Docs
A FieldElement form element defines how a feature layer’s field
participates in the FeatureForm.
ArcGIS Maps SDK for JavaScript
FieldOrder GeoBlazor Docs
This object sets a field and sort order for how records display within the table.
ArcGIS Maps SDK for JavaScript
FormElement GeoBlazor Docs
Form elements define what should display within the FormTemplate elements.
ArcGIS Maps SDK for JavaScript
FormTemplate GeoBlazor Docs
A FormTemplate formats and defines the content of a FeatureForm for
a specific Featurelayer or SubtypeSubLayer.
ArcGIS Maps SDK for JavaScript
FormTemplateExpressionInfo GeoBlazor Docs
The ExpressionInfo class defines the makeup of visibility expressions, required expressions, editable expressions, and value expressions.
ArcGIS Maps SDK for JavaScript
GeoJSONLayerViewProExtensions Pro Extension methods for the GeoJSONLayerView class.
GraphicsLayerViewProExtensions Pro Extension methods for the GraphicsLayerView class.
GroupElement GeoBlazor Docs
A GroupElement form element defines a container that holds a set of
form elements
that can be expanded, collapsed, or displayed together.
ArcGIS Maps SDK for JavaScript
ImageryLayerViewProExtensions Pro Extension methods for the ImageryLayerView class.
MeshComponent GeoBlazor Docs
The MeshComponent class is used to apply one or more materials to
a single Mesh.
ArcGIS Maps SDK for JavaScript
MeshMaterial GeoBlazor Docs
The material determines how a MeshComponent is visualized.
ArcGIS Maps SDK for JavaScript
MeshMaterialMetallicRoughness GeoBlazor Docs
A material determines how a MeshComponent is visualized.
ArcGIS Maps SDK for JavaScript
MeshTexture GeoBlazor Docs
MeshTexture represents image data to be used for MeshMaterial or MeshMaterialMetallicRoughness.
ArcGIS Maps SDK for JavaScript
MeshTextureTransform GeoBlazor Docs
MeshTextureTransform represents a transformation of UV mesh coordinates used to sample a MeshTexture.
ArcGIS Maps SDK for JavaScript
MeshTransform GeoBlazor Docs
A mesh transform.
ArcGIS Maps SDK for JavaScript
MeshVertexAttributes GeoBlazor Docs
Object describing the attributes of each vertex of the mesh.
ArcGIS Maps SDK for JavaScript
NetworkService This class contains functions for working with network services.
ArcGIS Maps SDK for JavaScript
PieChartGenerator GeoBlazor Docs
This object contains a helper method for generating a pie chart for every feature.
ArcGIS Maps SDK for JavaScript
PieChartOthersCategory Defines the rules for how to aggregate small categories to a generic “others” category.
PrintTemplate GeoBlazor Docs
Defines the layout template options used by print
and the PrintViewModel.print()
method to generate the print page.
ArcGIS Maps SDK for JavaScript
PrintViewModel GeoBlazor Docs
Provides the logic for the Print widget.
ArcGIS Maps SDK for JavaScript
RouteService Find routes between two or more locations and optionally get driving directions. The route module uses ArcGIS Server network analysis services to calculate routes. Network analysis services allow you to solve simple routing problems as well as complex ones that take into account multiple stops, barriers, and time windows.
ArcGIS Maps SDK for JavaScript
SelectionTools The available selection tools within the widget.
SketchViewModel GeoBlazor Docs
Provides the logic for the Sketch widget.
ArcGIS Maps SDK for JavaScript
SketchWidgetVisibleElements The visible elements that are displayed within the widget. This provides the ability to turn individual elements of the widget’s display on/off.
ArcGIS JS API
SnappingControlsElement The elements contained within the snapping controls.
StopsByCount Divides the time slider\u0027s fullTimeExtent into equal parts.
ArcGIS Maps SDK for JavaScript
StopsByDates Specifies an array of dates for the time slider widget.
ArcGIS Maps SDK for JavaScript
StopsByInterval Defines regularly spaced stops on the time slider from a TimeInterval.
ArcGIS Maps SDK for JavaScript
SubtypeSublayer GeoBlazor Docs
Represents a sublayer in a SubtypeGroupLayer.
ArcGIS Maps SDK for JavaScript
SupportingWidgetDefaults GeoBlazor Docs
Set this to customize any supporting Editor widget’s default behavior.
ArcGIS Maps SDK for JavaScript
SwipeViewModel Provides the logic for the Swipe widget.
ArcGIS Maps SDK for JavaScript
SwipeVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
TableListListItem GeoBlazor Docs
The panel’s parent ListItem that represents a table in the map.
ArcGIS Maps SDK for JavaScript
TableListViewModel View model for the TableListWidget component.
TableListVisibleElements GeoBlazor Docs
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
TableMenuConfig GeoBlazor Docs
The configuration for the table’s menu.
ArcGIS Maps SDK for JavaScript
TableMenuItemConfig GeoBlazor Docs
The configuration for an individual menu item within the table menu.
ArcGIS Maps SDK for JavaScript
TableTemplate GeoBlazor Docs
A TableTemplate formats and defines the content of a FeatureTable.
ArcGIS Maps SDK for JavaScript
TimeSliderAction Definition of an action that can be assigned to the actions property on the TimeSlider or the TimeSliderViewModel. It is displayed in a menu when the user clicks the ellipsis button timeSlider-actions-menu on the TimeSlider widget.
TimeSliderStops Defines specific locations on the time slider where thumbs will snap to when manipulated.
If unspecified, ten evenly spaced stops will be added.
TimeSliderViewModel GeoBlazor Docs
Provides the logic for the TimeSlider widget.
ArcGIS Maps SDK for JavaScript
TrackViewModel GeoBlazor Docs
Provides the logic for the Track component and Track widget, which
animates the View
to the user’s location when clicked and tracks it as the location is updated.
ArcGIS Maps SDK for JavaScript
VisibleElementsSnappingControlsElements GeoBlazor Docs
The available SnappingControls elements within the widget.
ArcGIS Maps SDK for JavaScript
VisibleElementsSnappingControlsElementsGridControlsElements GeoBlazor Docs
WFSLayerViewProExtensions Pro Extension methods for the WFSLayerView class.

dymaptic.GeoBlazor.Pro.Components.Geometries Namespace

Classes  
Mesh GeoBlazor Docs
A mesh is a general, client-side 3D geometry type
composed of vertices with attributes.
ArcGIS Maps SDK for JavaScript
Multipoint GeoBlazor Docs
An ordered collection of points.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Components.Layers Namespace

Classes  
BaseTileLayerProExtensions Pro Extension methods for the BaseTileLayer class.
CatalogDynamicGroupLayer GeoBlazor Docs
CatalogDynamicGroupLayer is a sublayer of the CatalogLayer that displays catalog items (layers) in the current view.
ArcGIS Maps SDK for JavaScript
CatalogFootprintLayer GeoBlazor Docs
CatalogFootprintLayer is a layer that represents the footprints of items referenced in a catalog layer.
ArcGIS Maps SDK for JavaScript
CatalogLayer GeoBlazor Docs
CatalogLayer points to different portal items and services, helping you to better organize and manage your data.
ArcGIS Maps SDK for JavaScript
CSVLayerProExtensions Pro Extension methods for the CSVLayer class.
ElevationLayer GeoBlazor Docs
ElevationLayer is a tile layer used for rendering elevations in SceneViews.
ArcGIS Maps SDK for JavaScript
FeatureLayerProExtensions Pro Extension methods for the FeatureLayer class.
FeatureReduction Feature reduction is a technique to reduce the number of features that are rendered on the map.
ArcGIS Maps SDK for JavaScript
GeoJSONLayerProExtensions Pro Extension methods for the GeoJSONLayer class.
GeoRSSLayerProExtensions Pro Extension methods for the GeoRSSLayer class.
GroupLayer GeoBlazor Docs
GroupLayer provides the ability to organize several sublayers into one common layer.
ArcGIS Maps SDK for JavaScript
ImageryLayerProExtensions Pro Extension methods for the ImageryLayer class.
ImageryTileLayerProExtensions Pro Extension methods for the ImageryTileLayer class.
LayerProExtensions Pro Extension methods for the Layer class.
MapImageLayerProExtensions Pro Extension methods for the MapImageLayer class.
ProLayer Abstract base class for Layers in the GeoBlazor Pro library
SceneLayer GeoBlazor Docs
The SceneLayer is a layer type designed for on-demand streaming and displaying large
amounts of data in a SceneView.
ArcGIS Maps SDK for JavaScript
TileLayerProExtensions Pro Extension methods for the TileLayer class.
VectorTileLayerProExtensions Pro Extension methods for the VectorTileLayer class.
WCSLayerProExtensions Pro Extension methods for the WCSLayer class.
WebTileLayerProExtensions Pro Extension methods for the WebTileLayer class.
WFSLayerProExtensions Pro Extension methods for the WFSLayer class.
WMSLayerProExtensions Pro Extension methods for the WMSLayer class.
WMTSLayerProExtensions Pro Extension methods for the WMTSLayer class.

dymaptic.GeoBlazor.Pro.Components.Popups Namespace

Classes  
PopupTemplateGenerator This object contains helper methods for generating popup templates to be set on a layer or a layer’s FeatureReductionCluster.
Templates: ArcGIS Maps SDK for JavaScriptClusters: ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Components.Renderers Namespace

Classes  
PieChartRenderer GeoBlazor Docs
PieChartRenderer allows you to create a pie chart for each feature in the layer.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Components.Widgets Namespace

Classes  
AttachmentsCapabilitiesOperation Describes the configurable attachments operations.
AttachmentsWidget GeoBlazor Docs
This widget allows users to view and edit attachments associated with a feature and is
considered a standalone experience that can be utilized in widgets such Popup and Editor.
ArcGIS Maps SDK for JavaScript
CatalogLayerListWidget GeoBlazor Docs
The CatalogLayerList widget provides a way to display and interact with CatalogLayers.
ArcGIS Maps SDK for JavaScript
CoordinateConversionWidget GeoBlazor Docs
The CoordinateConversion widget provides a way to display user cursor position either as map coordinates or
as any of several popular coordinate notations.
ArcGIS Maps SDK for JavaScript
EditorWidget GeoBlazor Docs
This widget provides an out-of-the-box editing experience to help streamline editing within a web application.
ArcGIS Maps SDK for JavaScript
FeatureFormWidget GeoBlazor Docs
The FeatureForm widget displays attributes of a feature.
ArcGIS Maps SDK for JavaScript
FeatureTableWidget GeoBlazor Docs
The FeatureTable’s functionality is described in the following sections:.
ArcGIS Maps SDK for JavaScript
FeatureTemplateSelectEvent The event object that fires when a template item is selected.
FeatureTemplatesWidget GeoBlazor Docs
The FeatureTemplates widget is part of the overall editing workflow.
ArcGIS Maps SDK for JavaScript
FeatureWidget GeoBlazor Docs
The Feature widget displays a graphic according to its PopupTemplate.
ArcGIS Maps SDK for JavaScript
GraphicsLegendWidget A custom widget that displays a legend for the graphics in the View and Graphics Layers.
PrintWidget GeoBlazor Docs
The Print widget connects your application with a printing service to allow the map to be printed.
ArcGIS Maps SDK for JavaScript
ProWidget Abstract base class for Widgets in the GeoBlazor Pro library
SketchWidget GeoBlazor Docs
Sketch widget provides a simple UI for creating and updating graphics on a MapView or
a SceneView.
ArcGIS Maps SDK for JavaScript
SupportingWidgetAttachments Indicates whether to allow updating an existing attachment. Default value is true.
SupportingWidgetFeatureForm An object containing properties specific for customizing the FeatureForm widget.
SupportingWidgetFeatureTemplates An object containing properties specific for customizing the FeatureTemplates widget.
SupportingWidgetSketch An object containing properties specific for customizing the Sketch widget.
SupportingWidgetVisibleElements Support class for filtering.
SwipeWidget GeoBlazor Docs
The Swipe widget provides a tool to show a portion of a layer or layers
on top of a map.
ArcGIS Maps SDK for JavaScript
TableListItemPanelWidget GeoBlazor Docs
This class allows you to display custom content for each ListItem
in the TableList widget.
ArcGIS Maps SDK for JavaScript
TableListWidget GeoBlazor Docs
The TableList widget provides a way to display a list of tables associated with a Map.
ArcGIS Maps SDK for JavaScript
TimeSliderWidget GeoBlazor Docs
The TimeSlider widget simplifies visualization of temporal data
in your application.
ArcGIS Maps SDK for JavaScript
TrackWidget GeoBlazor Docs
Provides a simple button that animates the View
to the user’s location when clicked.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Enums Namespace

Enums  
AccumulateAttribute Accumulated units for AccumulateAttributes
AttachmentsDisplayType The display type for attachments in the AttachmentsWidget.
AvailableCreateTool GeoBlazor Docs
Property controlling the visibility and order of create tool buttons.
default [“point”, “polyline”, “polygon”, “rectangle”, “circle”]
ArcGIS Maps SDK for JavaScript
BaseType GeoBlazor Docs
Surface type of the base elevation plane.
default “plane”
ArcGIS Maps SDK for JavaScript
BinOrder GeoBlazor Docs
Bins can be returned in ascending or descending order.
default “ascending”
ArcGIS Maps SDK for JavaScript
CoordinateConversionMode GeoBlazor Docs
Enumeration for CoordinateConversionMode
CreationMode GeoBlazor Docs
Defines the default behavior once the create operation is completed. By default, the user will be able to continuously create graphics with same geometry types.
CurbApproach Directions of traffic for point barriers.
DirectionEventType The type of event in a DirectionsString
DirectionsLengthUnits Units for displaying travel distance in driving directions.
DirectionsOutputType Content and verbosity of driving directions in RouteParameters
DirectionsStyleName The formatting style for directions.
DirectionsTimeAttribute Time Attributes for RouteParameters
DistanceAttributeName The distance attribute values
EditorViewModelState Represents the state of the EditorViewModel.
ExpressionValueType GeoBlazor Docs
Enumeration for ExpressionValueType
FeatureFormViewModelState The state of the FeatureFormViewModel.
FeatureTableViewModelState GeoBlazor Docs
The state of the widget.
default “disabled”
ArcGIS Maps SDK for JavaScript
FeatureTableWidgetState GeoBlazor Docs
The state of the widget.
default “disabled”
ArcGIS Maps SDK for JavaScript
FieldInputDataType GeoBlazor Docs
The type of data displayed by the field input.
ArcGIS Maps SDK for JavaScript
FileLinkState GeoBlazor Docs
Enumeration for FileLinkState
FullEdge Values for FullEdge
GroupDisplay GeoBlazor Docs
Defines how groups will be displayed to the user.
GroupInputState GeoBlazor Docs
Enumeration for GroupInputState
ImpedanceAttribute Impedance units for AccumulateAttributes
ImpedanceAttributeName The network cost attribute used as impedance.
InputType The type of an InputBase
NAMessageType The type of network analyst message.
OutputGeometryPrecisionUnits Units for the OutputGeometryPrecision.
OutputLines The type of route that is output by the Solve(string, RouteParameters, RequestOptions) method.
PieChartShape Available Shapes for the PieChart Renderer
PointBarrierType Point Barrier restriction types
PolygonBarrierType Point Barrier restriction types
PrintFormat The output format for a printed map.
PrintLayout The layout used for the print output.
PrintViewModelState GeoBlazor Docs
The view model’s state.
default “disabled”
ArcGIS Maps SDK for JavaScript
Report GeoBlazor Docs
The name of the report template.
ArcGIS Maps SDK for JavaScript
RestrictionAttribute Possible restrictions on route travel in RouteParameters.
RestrictUTurns Possible restrictions on U-Turns during travel in RouteParameters.
Scale GeoBlazor Docs
Determines the size of widget elements.
default “m”
ArcGIS Maps SDK for JavaScript
ScalebarUnit GeoBlazor Docs
The unit used for the scalebar.
default Miles
ArcGIS Maps SDK for JavaScript
SimplificationToleranceUnits The linear units associated with simplificationTolerance.
SketchEventState The possible states of the SketchEvent
SketchEventTool The current tool in the SketchEvent
SketchEventType The possible types of the SketchEvent
SketchTool The tools included in the SketchWidget and EditorWidget.
SketchViewModelState GeoBlazor Docs
The sketch view model’s state.
default “disabled”
ArcGIS Maps SDK for JavaScript
SketchWidgetLayout Options for the directional layout of the SketchWidget
SketchWidgetState The state of the SketchWidget.
StopCurbApproach Directions a vehicle may arrive at and depart a stop.
StopLocationType Possible stop types along a route.
StopStatus The status of the stop with respect to the underlying street network.
SwipeDirection GeoBlazor Docs
Options for direction of swipe widget.
TimeSliderLayout Determines the layout used by the TimeSlider widget.
TimeSliderMode GeoBlazor Docs
The time slider mode. This property is used for defining if the temporal data will be displayed cumulatively up to a point in time, a single instant in time, or within a time range.
TimeSliderStopsType Defines specific locations on the time slider where thumbs will snap to when manipulated. If unspecified, ten evenly spaced stops will be added.
TimeSliderViewModelState GeoBlazor Docs
The view model’s state.
default “disabled”
ArcGIS Maps SDK for JavaScript
ToolbarKind GeoBlazor Docs
Controls the appearance of the sketch widget, allowing
the toolbar to adapt its appearance appropriately based on context.
default “floating”
ArcGIS Maps SDK for JavaScript
TooltipMode GeoBlazor Docs
The current mode the tooltip is in.
ArcGIS Maps SDK for JavaScript
TrackViewModelState GeoBlazor Docs
The current state of the widget.
default “disabled”
ArcGIS Maps SDK for JavaScript
TravelModeType Indicates the category of travel or vehicle represented by this travel mode.
TravelTimeAttribute Indicates the time-based cost attribute for reporting directions.
UTurnAtJunctions Indicates how the U-turns at junctions that could occur during network traversal are handled by the solver.
ValueType GeoBlazor Docs
Specifies the expected data type of the output from the stackBy or splitBy parameters.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Events Namespace

Classes  
CatalogLayerListTriggerActionEvent GeoBlazor Docs
Event result type for the CatalogLayerListWidget.OnTriggerAction event.
CatalogLayerListViewModelTriggerActionEvent GeoBlazor Docs
Event result type for the CatalogLayerListViewModel.OnTriggerAction event.
CursorUpdateEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the create
event when the user moves the cursor on the view while the graphic is being created.
ArcGIS Maps SDK for JavaScript
EditorSketchCreateEvent GeoBlazor Docs
Event result type for the EditorWidget.OnSketchCreate event.
EditorSketchCreateEventDetail GeoBlazor Docs
EditorSketchUpdateEvent GeoBlazor Docs
Event result type for the EditorWidget.OnSketchUpdate event.
EditorSketchUpdateEventDetail GeoBlazor Docs
EditorViewModelSketchCreateEvent GeoBlazor Docs
Event result type for the EditorViewModel.OnSketchCreate event.
EditorViewModelSketchCreateEventDetail GeoBlazor Docs
EditorViewModelSketchUpdateEvent GeoBlazor Docs
Event result type for the EditorViewModel.OnSketchUpdate event.
EditorViewModelSketchUpdateEventDetail GeoBlazor Docs
Detailed information returned within the “sketch-update” event.
ElevationSamplerChangedEvent GeoBlazor Docs
Event result type for the ElevationSampler.OnChanged event.
FeatureFormSubmitEvent GeoBlazor Docs
Event result type for the FeatureFormWidget.OnSubmit event.
FeatureFormValueChangeEvent GeoBlazor Docs
Event result type for the FeatureFormWidget.OnValueChange event.
FeatureFormViewModelSubmitEvent GeoBlazor Docs
Event result type for the FeatureFormViewModel.OnSubmit event.
FeatureFormViewModelValueChangeEvent GeoBlazor Docs
Event result type for the FeatureFormViewModel.OnValueChange event.
FeatureTableCellClickEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnCellClick event.
FeatureTableCellDblclickEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnCellDblclick event.
FeatureTableCellKeydownEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnCellKeydown event.
FeatureTableCellPointeroutEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnCellPointerout event.
FeatureTableCellPointeroverEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnCellPointerover event.
FeatureTableColumnReorderEvent GeoBlazor Docs
Event result type for the FeatureTableWidget.OnColumnReorder event.
FeatureTableViewModelCellClickEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnCellClick event.
FeatureTableViewModelCellDblclickEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnCellDblclick event.
FeatureTableViewModelCellKeydownEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnCellKeydown event.
FeatureTableViewModelCellPointeroutEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnCellPointerout event.
FeatureTableViewModelCellPointeroverEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnCellPointerover event.
FeatureTableViewModelColumnReorderEvent GeoBlazor Docs
Event result type for the FeatureTableViewModel.OnColumnReorder event.
FeatureTemplatesSelectEvent GeoBlazor Docs
Event result type for the FeatureTemplatesWidget.OnSelect event.
FeatureTemplatesViewModelSelectEvent GeoBlazor Docs
Event result type for the FeatureTemplatesViewModel.OnSelect event.
GeoLocationPosition W3 GeoLocation Spec
MoveEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is moving the graphics.
ArcGIS Maps SDK for JavaScript
MoveStartEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is moving the graphics.
ArcGIS Maps SDK for JavaScript
MoveStopEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is moving the graphics.
ArcGIS Maps SDK for JavaScript
PrintCompleteEvent GeoBlazor Docs
Event result type for the PrintWidget.OnComplete event.
PrintSubmitEvent GeoBlazor Docs
Event result type for the PrintWidget.OnSubmit event.
ReshapeEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is reshaping the graphics.
ArcGIS Maps SDK for JavaScript
ReshapeStartEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is reshaping the graphics.
ArcGIS Maps SDK for JavaScript
ReshapeStopEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is reshaping the graphics.
ArcGIS Maps SDK for JavaScript
RotateEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is rotating the graphics.
ArcGIS Maps SDK for JavaScript
RotateStartEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is rotating the graphics.
ArcGIS Maps SDK for JavaScript
RotateStopEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is rotating the graphics.
ArcGIS Maps SDK for JavaScript
ScaleEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is scaling or resizing the graphics.
ArcGIS Maps SDK for JavaScript
ScaleStartEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is scaling or resizing the graphics.
ArcGIS Maps SDK for JavaScript
ScaleStopEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is scaling or resizing the graphics.
ArcGIS Maps SDK for JavaScript
SelectionChangeEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update
event while the user is selecting or deselecting graphics using Shift+Left-click.
ArcGIS Maps SDK for JavaScript
SketchCreateEvent GeoBlazor Docs
Event result type for the SketchWidget.OnCreate event.
SketchDeleteEvent GeoBlazor Docs
Event result type for the SketchWidget.OnDelete event.
SketchEvent The SketchEvent class is used to represent the event object passed to the event handlers for the SketchWidget.
SketchRedoEvent GeoBlazor Docs
Event result type for the SketchWidget.OnRedo event.
SketchUndoEvent GeoBlazor Docs
Event result type for the SketchWidget.OnUndo event.
SketchUpdateEvent GeoBlazor Docs
Event result type for the SketchWidget.OnUpdate event.
SketchViewModelCreateEvent GeoBlazor Docs
Event result type for the SketchViewModel.OnCreate event.
SketchViewModelDeleteEvent GeoBlazor Docs
Event result type for the SketchViewModel.OnDelete event.
SketchViewModelRedoEvent GeoBlazor Docs
Event result type for the SketchViewModel.OnRedo event.
SketchViewModelUndoEvent GeoBlazor Docs
Event result type for the SketchViewModel.OnUndo event.
SketchViewModelUpdateEvent GeoBlazor Docs
Event result type for the SketchViewModel.OnUpdate event.
TableListTriggerActionEvent GeoBlazor Docs
Event result type for the TableListWidget.OnTriggerAction event.
TimeSliderTriggerActionEvent GeoBlazor Docs
Event result type for the TimeSliderWidget.OnTriggerAction event.
TimeSliderViewModelTriggerActionEvent GeoBlazor Docs
Event result type for the TimeSliderViewModel.OnTriggerAction event.
ToolEventInfo Returns additional information associated with the operation such as where the user is clicking the view or where the user is moving the cursor to. Value of this parameter changes to null when the event’s state changes to complete or cancel.
TrackErrorEvent Event result type for the TrackWidget.OnTrackError event.
TrackEvent The event fired by the TrackWidget
TrackViewModelTrackErrorEvent GeoBlazor Docs
Event result type for the TrackViewModel.OnTrackError event.
TrackViewModelTrackEvent GeoBlazor Docs
Event result type for the TrackViewModel.OnTrack event.
VertexAddEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the create
or update event when the user adds vertices to the graphic being created or updated.
ArcGIS Maps SDK for JavaScript
VertexRemoveEventInfo GeoBlazor Docs
This information is returned as toolEventInfo parameter for the update event
when the user is removing vertices from the graphic.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Functions Namespace

dymaptic.GeoBlazor.Pro.Interfaces Namespace

Interfaces  
IEditableInput GeoBlazor Docs
Interface for types FieldInput, RelationshipInput, UtilityNetworkAssociationInput

dymaptic.GeoBlazor.Pro.Model Namespace

Classes  
AggregatedGeometry GeoBlazor Docs
A class that defines an aggregation of geometries.
ArcGIS Maps SDK for JavaScript
ArcGISRest Provides access to the ArcGIS REST API via JavaScript. This class is a work in progress, only QueryDemographicData is currently implemented.
Association GeoBlazor Docs
The utility network associations model connectivity, containment and structure relations between assets.
ArcGIS Maps SDK for JavaScript
AttributeBinsFeatureSet GeoBlazor Docs
The AttributeBinsFeatureSet is a collection of AttributeBinsGraphic returned from the queryAttributeBins() method based on a given AttributeBinsQuery.
ArcGIS Maps SDK for JavaScript
AttributeBinsGrouping GeoBlazor Docs
AttributeBinsGrouping is a class that defines the stackBy or splitBy parameter in the AttributeBinsQuery.
ArcGIS Maps SDK for JavaScript
AttributeBinsQuery GeoBlazor Docs
This class configures parameters for the queryAttributeBins() method, which groups features in a layer or layer view into bins
based on numeric or date fields.
ArcGIS Maps SDK for JavaScript
AttributeParameterValue An object describing the parameter values for the AttributeParameterValues property of RouteParameters.
AutoIntervalBinParameters GeoBlazor Docs
AutoIntervalBinParameters specifies binParameters on AttributeBinsQuery object.
ArcGIS Maps SDK for JavaScript
Barrier A base class for barriers to restrict travel along a street network when using a RouteLayer.
BinParametersBase GeoBlazor Docs
ColumnSortOrder GeoBlazor Docs
An array of objects containing a column’s name and sort direction.
ArcGIS Maps SDK for JavaScript
CoordinateConversionViewModel GeoBlazor Docs
Provides the logic for the CoordinateConversion widget.
ArcGIS Maps SDK for JavaScript
CreateBoxParametersSize GeoBlazor Docs
CreateCapabilities GeoBlazor Docs
Specific permissions for create operations.
ArcGIS Maps SDK for JavaScript
CreateFeaturesCreationInfo GeoBlazor Docs
This object provides required properties needed when creating a new feature.
ArcGIS Maps SDK for JavaScript
CreationInfo GeoBlazor Docs
This object provides required and optional properties needed when creating a new feature.
ArcGIS Maps SDK for JavaScript
CustomTemplate GeoBlazor Docs
Defines the custom layout template options used by the Print widget
to generate the print page.
ArcGIS Maps SDK for JavaScript
DefaultEditingCapabilities GeoBlazor Docs
The default editing capabilities for the provided layer.
ArcGIS Maps SDK for JavaScript
DeleteCapabilities GeoBlazor Docs
Specific permissions for delete operations.
ArcGIS Maps SDK for JavaScript
DirectionsString An event string object with name and type.
EditorEditingCapabilities GeoBlazor Docs
The current editing capabilities for the provided layer and read by the Editor.
ArcGIS Maps SDK for JavaScript
EditorItem GeoBlazor Docs
A predominantly read-only editable item that corresponds to the feature being updated.
ArcGIS Maps SDK for JavaScript
ElevationLayerElevationQueryResultSampleInfo GeoBlazor Docs
Contains additional information about how the geometry was sampled.
ArcGIS Maps SDK for JavaScript
ElevationTileData GeoBlazor Docs
Describes elevation contained in the pixels that comprise an elevation tile.
ArcGIS Maps SDK for JavaScript
FieldInput GeoBlazor Docs
This is a read-only support class that represents a field’s input.
ArcGIS Maps SDK for JavaScript
FileLink GeoBlazor Docs
Represents an exported map request from the result of the Print widget.
ArcGIS Maps SDK for JavaScript
FixedBoundariesBinParameters GeoBlazor Docs
FixedBoundariesBinParameters specifies binParameters on AttributeBinsQuery object.
ArcGIS Maps SDK for JavaScript
FixedIntervalBinParameters GeoBlazor Docs
FixedIntervalBinParameters specifies binParameters on AttributeBinsQuery object.
ArcGIS Maps SDK for JavaScript
FormatPosition GeoBlazor Docs
Describes a point in terms of a location, a Point, and a coordinate, a string.
ArcGIS Maps SDK for JavaScript
GeoLocationCoordinates W3 GeoLocation Spec
GroupInput GeoBlazor Docs
This is a support class that represents a group of field inputs.
ArcGIS Maps SDK for JavaScript
ImageAngleParameters GeoBlazor Docs
Input parameters for ImageryLayer.computeAngles()
or imageService.computeAngles() methods.
ArcGIS Maps SDK for JavaScript
ImageAreaParameters GeoBlazor Docs
Input parameters used by the ImageryLayer.measureAreaAndPerimeter()
and imageService.measureAreaAndPerimeter() methods to perform imagery
area and perimeter mensuration.
ArcGIS Maps SDK for JavaScript
ImageBoundaryParameters GeoBlazor Docs
Image boundary query parameters for ImageryLayer.queryBoundary()
or imageService.queryBoundary() methods.
ArcGIS Maps SDK for JavaScript
ImageDistanceParameters GeoBlazor Docs
Input parameters used by the ImageryLayer.measureDistanceAndAngle()
or imageService.measureDistanceAndAngle() methods to perform imagery
distance and angle mensuration.
ArcGIS Maps SDK for JavaScript
ImageGPSInfo GeoBlazor Docs
Image GPS information for images returned as a result of the ImageryLayer.queryGPSInfo()
or imageService.queryGPSInfo() methods.
ArcGIS Maps SDK for JavaScript
ImageGPSInfoParameters GeoBlazor Docs
Image GPS info parameters for ImageryLayer.queryGPSInfo()
or imageService.queryGPSInfo() methods.
ArcGIS Maps SDK for JavaScript
ImageHeightParameters GeoBlazor Docs
Input parameters used by the ImageryLayer.measureHeight()
or imageService.measureHeight() methods to perform imagery
height mensuration.
ArcGIS Maps SDK for JavaScript
ImageHistogramParameters GeoBlazor Docs
Input parameters for the computeHistograms or
computeStatisticsHistograms
method on ImageryLayer, or the computeStatisticsHistograms
method on ImageryTileLayer.
ArcGIS Maps SDK for JavaScript
ImageIdentifyParameters GeoBlazor Docs
Input parameters for imageService.
ArcGIS Maps SDK for JavaScript
ImageInspectionInfo GeoBlazor Docs
Image information for images returned as a result of running ImageryLayer.findImages()
or imageService.findImages() methods.
ArcGIS Maps SDK for JavaScript
ImageInspectionInfoOrientation GeoBlazor Docs
Image’s orientation along x, y, z axis.
ArcGIS Maps SDK for JavaScript
ImagePixelLocationParameters GeoBlazor Docs
Input parameters for the ImageryLayer.computePixelSpaceLocations()
or imageService.computePixelSpaceLocations() methods.
ArcGIS Maps SDK for JavaScript
ImagePointParameters GeoBlazor Docs
Input parameters used by the ImageryLayer.measurePointOrCentroid()
or imageService.measurePointOrCentroid() methods to perform imagery
point or centroid mensuration.
ArcGIS Maps SDK for JavaScript
ImageSample GeoBlazor Docs
The getSamples
method on ImageryLayer returns
ImageSampleResult containing array of this class.
ArcGIS Maps SDK for JavaScript
ImageSampleParameters GeoBlazor Docs
Input parameters for the getSamples()
method on ImageryLayer.
ArcGIS Maps SDK for JavaScript
ImageToMapMultirayParameters GeoBlazor Docs
Input parameters for the ImageryLayer.imageToMapMultiray()
or imageService.imageToMapMultiray() methods.
ArcGIS Maps SDK for JavaScript
ImageToMapParameters GeoBlazor Docs
Input parameters for the ImageryLayer.imageToMap()
or imageService.imageToMap() methods.
ArcGIS Maps SDK for JavaScript
ImageUrlParameters GeoBlazor Docs
Input parameters for the ImageryLayer.getImageUrl()
or imageService.getImageUrl() methods.
ArcGIS Maps SDK for JavaScript
ImageVolume GeoBlazor Docs
The calculateVolume
method on ImageryLayer returns
ImageVolumeResult containing array of this class.
ArcGIS Maps SDK for JavaScript
ImageVolumeParameters GeoBlazor Docs
Input parameters for the calculateVolume()
method on ImageryLayer.
ArcGIS Maps SDK for JavaScript
InputBase GeoBlazor Docs
The field inputs contained within the group.
ArcGIS Maps SDK for JavaScript
LabelGenerator Helper class for generating default labels to be set on a layer’s binning or cluster configuration.
Bins: ArcGIS Maps SDK for JavaScriptClusters: ArcGIS Maps SDK for JavaScript
LabelScheme Contains a suggested labelingInfo to be set on the layer’s featureReduction.labelingInfo.
ArcGIS Maps SDK for JavaScript
LabelSchemes The return object of the GetClusterLabelSchemes(Layer, Guid, string, Renderer) or GetBinLabelSchemes(Layer, string, Renderer) methods.
ArcGIS Maps SDK for JavaScript
LegendLayer GeoBlazor Docs
Define layer properties for the legend layers associated with a
PrintTemplate.
ArcGIS Maps SDK for JavaScript
MapToImageParameters GeoBlazor Docs
Input parameters for the ImageryLayer.mapToImage()
or imageService.mapToImage() methods.
ArcGIS Maps SDK for JavaScript
MeasureFromImageParameters GeoBlazor Docs
Input parameters used by the ImageryLayer.measureLengthFromImage(),
ImageryLayer.measureAreaFromImage(),
imageService.measureLengthFromImage()
and imageService.measureAreaFromImage() methods to perform imagery
area, perimeter and length mensuration.
ArcGIS Maps SDK for JavaScript
MeshCenterAtParameters GeoBlazor Docs
MeshRotateParameters GeoBlazor Docs
MeshScaleParameters GeoBlazor Docs
MeshSize A uniform size value or an object containing individual values width, height and depth.
NAMessage Represents a message generated during the execution of a network analyst task. It is composed of a message type and description. NAMessage has no constructor.
ArcGIS Maps SDK
NetworkElement GeoBlazor Docs
The network element is a representation of how the network topology defines its graph.
ArcGIS Maps SDK for JavaScript
PieChartScheme Properties defining the colors and schemes used to visualize pie charts.
ArcGIS Maps SDK for JavaScript
PieChartSchemeOutline Properties for defining the outline of the pie chart.
ArcGIS Maps SDK for JavaScript
PointBarrier A point barrier to restrict travel along a street network when using a RouteLayer.
ArcGIS SDK for JavaScript
PolygonBarrier A polygon barrier to restrict travel along a street network when using a RouteLayer.
ArcGIS SDK for JavaScript
PolylineBarrier A polyline barrier to restrict travel along a street network when using a RouteLayer.
ArcGIS SDK for JavaScript
ProLogicComponent Abstract base class for Logic Components in GeoBlazor Pro
RelationshipInput GeoBlazor Docs
This is a read-only support class that represents a relationship input field.
ArcGIS Maps SDK for JavaScript
RequestResponse Returns a promise that resolves to an object with the following specification. If the request returns an Error, the error object will include the details specified in EsriErrorDetails.
RequestResponse<T> Returns a promise that resolves to an object with the following specification. If the request returns an Error, the error object will include the details specified in EsriErrorDetails.
RouteParameters Input parameters for route. Specifies details such as stop locations, barrier locations, the impedance attribute, etc.
ArcGIS SDK for JavaScript
RouteStop A stop represents the start, end, or midpoint of a route in RouteLayer or RouteParameters.
ArcGIS SDK for JavaScript
SceneLayerApplyEditsEdits GeoBlazor Docs
ServiceDescription The network service description.
SizeScheme Properties defining the symbology scheme used to visualize features with attribute data-driven size.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPoint Properties defining the symbology scheme used to visualize point features driven by attribute data.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPointOutline Properties for defining the outline of the marker symbol.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPolygon Properties defining the symbology scheme used to visualize polygon features driven by attribute data.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPolygonBackground The schema defining the backgound symbol of the feature.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPolygonBackgroundOutline Properties for defining the outline of the background fill symbol.
ArcGIS Maps SDK for JavaScript
SizeSchemeForPolyline Properties defining the symbology scheme used to visualize polyline features driven by attribute data.
ArcGIS Maps SDK for JavaScript
Subnetwork GeoBlazor Docs
The Subnetwork object represents the domain name, tier name, and subnetwork via fulfilling the promise returned from running the Network.validateTopology() function.
ArcGIS Maps SDK for JavaScript
TableListItemPanelContent The content displayed in the ListItem panel.
TemplateItem GeoBlazor Docs
The item displayed within the FeatureTemplates widget.
ArcGIS Maps SDK for JavaScript
TemplateItemGroup GeoBlazor Docs
This is a read-only support class that represents a group of items displayed within the FeatureTemplates widget.
ArcGIS Maps SDK for JavaScript
Terminal GeoBlazor Docs
A device feature can be assigned a terminal configuration, which could have one or more terminals.
ArcGIS Maps SDK for JavaScript
Tooltip GeoBlazor Docs
Object which represents a tooltip that is shown while sketching and editing.
ArcGIS Maps SDK for JavaScript
TraceLocation GeoBlazor Docs
To perform the trace analytic, users can optionally supply a list of locations in forms of globalIds (UUID) and terminals.
ArcGIS Maps SDK for JavaScript
TravelMode A TravelMode is a set of characteristics that define how an object like a vehicle, bicycle, or pedestrian moves along a street network. Those characteristics are considered when finding directions to determine how the vehicle or pedestrian travels, and where they can go. To get a list of supported travel modes, find the default travel mode, and to find and use a specific travel mode, you can use the networkService.fetchServiceDescription() method.
TravelModeAttributeParameterValue Lists the parameterized attributes used by the travel mode.
UniqueValuesResultUniqueValueInfos An array of objects, each containing a unique value/type/category present in the field specified in the uniqueValues() query.
ArcGIS Maps SDK for JavaScript
Units GeoBlazor Docs
Units used for displaying or interpreting values in the UI.
ArcGIS Maps SDK for JavaScript
UNTraceConfiguration GeoBlazor Docs
The UNTraceConfiguration class contains properties required to define objects than can be used to run custom traces on utility networks.
A UNTraceConfiguration differs from a TraceConfiguration slightly because a UNTraceConfiguration contains parameters that
are only applicable or relevant to utility networks.
UtilityNetworkAssociationInput GeoBlazor Docs
The name of the class. The declared class name is formatted as .
WebMapProperties A helper class that contains the properties that are read from a WebMap and used by the TimeSlider widget.
WfsUtils GeoBlazor Docs
Provides utility functions for the WFSLayer.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Pro.Options Namespace

Classes  
CatalogFootprintLayerGetFieldDomainOptions GeoBlazor Docs
ConvertMeshOptions GeoBlazor Docs
Options used to configure mesh conversion.
ArcGIS Maps SDK for JavaScript
CSVLayerGetFieldDomainOptions GeoBlazor Docs
CustomTemplateLayoutOptions GeoBlazor Docs
Defines the layout elements.
ArcGIS Maps SDK for JavaScript
ElevationLayerCreateElevationSamplerOptions GeoBlazor Docs
ElevationLayerFetchTileOptions GeoBlazor Docs
ElevationLayerQueryElevationOptions GeoBlazor Docs
FeatureLayerSaveAsOptions GeoBlazor Docs
FeatureLayerSaveOptions GeoBlazor Docs
GeoJSONLayerGetFieldDomainOptions GeoBlazor Docs
GroupLayerSaveAsOptions GeoBlazor Docs
GroupLayerSaveAsOptionsValidationOptions GeoBlazor Docs
Options for validating the save operation.
ArcGIS Maps SDK for JavaScript
GroupLayerSaveOptions GeoBlazor Docs
GroupLayerSaveOptionsValidationOptions GeoBlazor Docs
Options for validating the save operation.
ArcGIS Maps SDK for JavaScript
ImageryLayerSaveAsOptions GeoBlazor Docs
ImageryLayerSaveOptions GeoBlazor Docs
ImageryTileLayerSaveAsOptions GeoBlazor Docs
ImageryTileLayerSaveOptions GeoBlazor Docs
MapImageLayerCreateExportImageParametersOptions GeoBlazor Docs
MapImageLayerFetchImageOptions GeoBlazor Docs
MeshToBinaryGLTFOptions GeoBlazor Docs
PieChartLegendOptions An object providing options for describing the renderer in the Legend.
PrintTemplateExportOptions GeoBlazor Docs
Define the map width, height and dpi.
ArcGIS Maps SDK for JavaScript
PrintTemplateLayoutOptions GeoBlazor Docs
Defines the layout elements.
ArcGIS Maps SDK for JavaScript
SceneLayerApplyEditsOptions GeoBlazor Docs
SceneLayerGetFieldDomainOptions GeoBlazor Docs
SceneLayerSaveAsOptions GeoBlazor Docs
SketchLabelOptions GeoBlazor Docs
The SketchLabelOptions allows users to configure the labels which are shown next to each
segment of a graphic while sketching and editing.
ArcGIS Maps SDK for JavaScript
SketchToolCreateOptions GeoBlazor Docs
Default create options set for the Sketch widget.
ArcGIS Maps SDK for JavaScript
SketchTooltipOptions GeoBlazor Docs
The SketchTooltipOptions allows users to configure the tooltips which are shown while
sketching and editing.
ArcGIS Maps SDK for JavaScript
SketchToolUpdateOptions GeoBlazor Docs
Default update options set for the Sketch widget.
ArcGIS Maps SDK for JavaScript
SketchValueOptions GeoBlazor Docs
The SketchValueOptions allows users to configure how numerical values and
constraints behave while sketching and editing.
ArcGIS Maps SDK for JavaScript
SketchViewModelCreateCreateOptions GeoBlazor Docs
SketchViewModelDefaultCreateOptions GeoBlazor Docs
Default create options set for the SketchViewModel.
ArcGIS Maps SDK for JavaScript
SketchViewModelDefaultUpdateOptions GeoBlazor Docs
Default update options set for the SketchViewModel.
ArcGIS Maps SDK for JavaScript
SketchViewModelDefaultUpdateOptionsHighlightOptions GeoBlazor Docs
Options that control when to display or hide highlights for update operations.
ArcGIS Maps SDK for JavaScript
SketchViewModelDefaultUpdateOptionsReshapeOptions GeoBlazor Docs
Changes the behavior for the reshape tool.
ArcGIS Maps SDK for JavaScript
SketchViewModelUpdateUpdateOptions GeoBlazor Docs
TemplateOptions GeoBlazor Docs
Defines the layout template options used by the Print widget to generate printed output.
ArcGIS Maps SDK for JavaScript
TopologyValidationJobInfoWaitForJobCompletionOptions GeoBlazor Docs
TraceJobInfoWaitForJobCompletionOptions GeoBlazor Docs
WCSLayerSaveAsOptions GeoBlazor Docs
WCSLayerSaveOptions GeoBlazor Docs
WFSLayerGetFieldDomainOptions GeoBlazor Docs
WMSLayerFetchImageOptions GeoBlazor Docs

dymaptic.GeoBlazor.Pro.Results Namespace

Classes  
BaseImageMeasureResult GeoBlazor Docs
Base class for image service measure result.
ArcGIS Maps SDK for JavaScript
DirectionsFeatureSet DirectionsFeatureSet is a subclass of FeatureSet that contains street directions for a solved route.
DirectionsFeatureSet is only returned when a route is solved with an directions output type of “complete”, “complete-no-events”, “instructions-only”, “standard”, or “summary-only”. The “featuresets” output type returns two regular FeatureSet, one for events, and the other for the path in-between events.
ArcGIS Maps SDK for JavaScript
ElevationLayerElevationQueryResult GeoBlazor Docs
Object returned when queryElevation() promise resolves:.
ArcGIS Maps SDK for JavaScript
FindImagesResult GeoBlazor Docs
Results for the ImageryLayer.findImages()
or imageService.findImages() methods containing images that meet the search requirements.
ArcGIS Maps SDK for JavaScript
HistogramsResult Represents the result of a computation request for histograms.
ImageAngleResult GeoBlazor Docs
The results from imageService.computeAngles() or
ImageryLayer.computeAngles() method.
ArcGIS Maps SDK for JavaScript
ImageAreaResult GeoBlazor Docs
Image service area and perimeter measurement result returned when the ImageryLayer.measureAreaAndPerimeter()
or imageService.measureAreaAndPerimeter() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
ImageBoundaryResult GeoBlazor Docs
Image boundary query result for ImageryLayer.queryBoundary()
or imageService.queryBoundary() methods containing boundary geometry of an image service.
ArcGIS Maps SDK for JavaScript
ImageDistanceResult GeoBlazor Docs
Image service distance and angle measurement result returned when the ImageryLayer.measureDistanceAndAngle()
or imageService.measureDistanceAndAngle() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
ImageGPSInfoResult GeoBlazor Docs
Result for ImageryLayer.queryGPSInfo()
or imageService.queryGPSInfo() methods containing camera and image GPS information.
ArcGIS Maps SDK for JavaScript
ImageHeightResult GeoBlazor Docs
Image service height mensuration result returned when the ImageryLayer.measureHeight()
or imageService.measureHeight() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
ImageIdentifyResult GeoBlazor Docs
The results from imageService.
ArcGIS Maps SDK for JavaScript
ImagePixelLocationResult GeoBlazor Docs
The results from imageService.computePixelSpaceLocations() or
ImageryLayer.computePixelSpaceLocations() method.
ArcGIS Maps SDK for JavaScript
ImagePointResult GeoBlazor Docs
Image service point or centroid measurement result returned when the ImageryLayer.measurePointOrCentroid()
or imageService.measurePointOrCentroid() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
ImageSampleResult GeoBlazor Docs
The result from the getSamples
method on ImageryLayer containing array of
ImageSample.
ArcGIS Maps SDK for JavaScript
ImageUrlResult GeoBlazor Docs
The result returned when the ImageryLayer.getImageUrl()
or imageService.getImageUrl() method resolves successfully.
ArcGIS Maps SDK for JavaScript
ImageVolumeResult GeoBlazor Docs
The result from the calculateVolume
method on ImageryLayer containing array of
ImageVolume.
ArcGIS Maps SDK for JavaScript
MeasureAreaFromImageResult GeoBlazor Docs
The area and length result from a selected image’s measurement in an image space when the ImageryLayer.measureAreaFromImage()
or imageService.measureAreaFromImage() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
MeasureLengthFromImageResult GeoBlazor Docs
The length result from a selected image’s measurement in an image space when the ImageryLayer.measureLengthFromImage()
or imageService.measureLengthFromImage() methods resolve successfully.
ArcGIS Maps SDK for JavaScript
PieChartClusterRendererResult The result object of the CreateRendererForClustering(Layer, Nullable<PieChartShape>, Nullable<bool>, VisualVariableLegendOptions) method.
ArcGIS Maps SDK for JavaScript
PieChartRendererResult The result object of the createRenderer() method.
ArcGIS Maps SDK for JavaScript
PopupTemplateResult Defines a suggested PopupTemplate with a given name and title describing the content and purpose of the PopupTemplate.
ArcGIS Maps SDK for JavaScript
PopupTemplateResults The return object of the GetTemplates(Layer, Renderer) or GetClusterTemplates(Layer, Renderer) method.
ArcGIS Maps SDK for JavaScript
PrintCompleteEventResults GeoBlazor Docs
PrintResult The result of a print operation.
PrintSubmitEventResults GeoBlazor Docs
RouteResult The route result from route.solve() as part of a RouteSolveResult. A successfully solved route will contain one RouteSolveRoute, which may contain barriers, messages, and one or more RouteResult.
RouteResult may contain stops, directions, directions lines, direction points, and route information, depending on
the corresponding RouteParameters properties. For example, setting RouteParameters.returnStops to true will include
stops in the RouteResult.
ArcGIS Maps SDK for JavaScript
RouteResultWithoutGraphics Internal usage serialization record
RouteSolveResult The results from route.solve() method. A RouteSolveResult may contain barriers, messages, and one or more RouteResult.
ArcGIS Maps SDK for JavaScript
SceneLayerEditsResult GeoBlazor Docs
Results returned from the applyEdits method.
ArcGIS Maps SDK for JavaScript
SizeVisualVariableResult The result object of the createVisualVariables() method.
ArcGIS Maps SDK for JavaScript
SummaryStatisticsResult The statistics returned from the summaryStatistics() query.
ArcGIS Maps SDK for JavaScript
UniqueValuesResult An object that contains the unique values returned from the uniqueValues() query of a layer’s field.
ArcGIS Maps SDK for JavaScript