layout: default title: GetSuggestionsParameters parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Objects
GetSuggestionsParameters Class
An object that is passed as a parameter to get search suggestions.
ArcGIS Maps SDK for JavaScript
public class GetSuggestionsParameters :
System.IEquatable<dymaptic.GeoBlazor.Core.Objects.GetSuggestionsParameters>
Inheritance System.Object 🡒 GetSuggestionsParameters
Implements System.IEquatable<GetSuggestionsParameters>
Constructors
GetSuggestionsParameters(Nullable, Nullable, SpatialReference, string, Nullable) Constructor
An object that is passed as a parameter to get search suggestions.
ArcGIS Maps SDK for JavaScript
public GetSuggestionsParameters(System.Nullable<int> MaxSuggestions, System.Nullable<int> SourceIndex, dymaptic.GeoBlazor.Core.Components.Geometries.SpatialReference? SpatialReference, string? SuggestTerm, System.Nullable<System.Guid> ViewId);
Parameters
MaxSuggestions
System.Nullable<System.Int32>
Indicates the maximum number of suggestions to return for the widget’s input.
SourceIndex
System.Nullable<System.Int32>
Indicates the index of the search source.
SpatialReference
SpatialReference
Indicates the Spatial Refeference defined by the source.
SuggestTerm
System.String
Indicates search term used to find a suggestion.
ViewId
System.Nullable<System.Guid>
Indicates the Id for the MapView or SceneView provided to the Search Widget using the source.
Properties
GetSuggestionsParameters.MaxSuggestions Property
Indicates the maximum number of suggestions to return for the widget’s input.
public System.Nullable<int> MaxSuggestions { get; set; }
Property Value
GetSuggestionsParameters.SourceIndex Property
Indicates the index of the search source.
public System.Nullable<int> SourceIndex { get; set; }
Property Value
GetSuggestionsParameters.SpatialReference Property
Indicates the Spatial Refeference defined by the source.
public dymaptic.GeoBlazor.Core.Components.Geometries.SpatialReference? SpatialReference { get; set; }
Property Value
GetSuggestionsParameters.SuggestTerm Property
Indicates search term used to find a suggestion.
public string? SuggestTerm { get; set; }
Property Value
GetSuggestionsParameters.ViewId Property
Indicates the Id for the MapView or SceneView provided to the Search Widget using the source.
public System.Nullable<System.Guid> ViewId { get; set; }