layout: default title: AddressCandidate parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Objects

AddressCandidate Class

Represents the result of a geocode service operation as a list of address candidates. This resource provides
information about candidates, including the address, location, and match score.
ArcGIS Maps SDK for JavaScript

public class AddressCandidate

Inheritance System.Object 🡒 AddressCandidate

Properties

AddressCandidate.Address Property

Address of the candidate.

public string? Address { get; set; }

Property Value

System.String

AddressCandidate.Attributes Property

Name value pairs of field name and field value as defined in outFields in locator.addressToLocations().

public System.Collections.Generic.Dictionary<string,object> Attributes { get; set; }

Property Value

System.Collections.Generic.Dictionary<System.String,System.Object>

AddressCandidate.Extent Property

The minimum and maximum X and Y coordinates of a bounding box of the address candidate.

public dymaptic.GeoBlazor.Core.Components.Geometries.Extent? Extent { get; set; }

Property Value

Extent

AddressCandidate.Location Property

The Point object representing the location of the address.

public dymaptic.GeoBlazor.Core.Components.Geometries.Point? Location { get; set; }

Property Value

Point

AddressCandidate.Score Property

Numeric score between 0 and 100 for geocode candidates.

public System.Nullable<double> Score { get; set; }

Property Value

System.Nullable<System.Double>