layout: default title: SearchResult parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Objects
SearchResult Class
The result object returned from a search.
ArcGIS Maps SDK for JavaScript
public class SearchResult
Inheritance System.Object 🡒 SearchResult
Properties
SearchResult.Extent Property
The extent, or bounding box, of the returned feature. The value depends on the data source, with higher quality
data sources returning extents closer to the feature obtained from the search.
public dymaptic.GeoBlazor.Core.Components.Geometries.Extent? Extent { get; set; }
Property Value
SearchResult.Feature Property
The resulting feature or location obtained from the search.
public dymaptic.GeoBlazor.Core.Components.Layers.Graphic? Feature { get; set; }
Property Value
SearchResult.Name Property
The name of the result.
public string? Name { get; set; }
Property Value
SearchResult.Target Property
The target of the result, which is a Graphic used for either MapView goTo() or SceneView goTo() navigation.
public dymaptic.GeoBlazor.Core.Components.Layers.Graphic? Target { get; set; }