Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: VEGeocodeResult

require(["esri/virtualearth/VEGeocodeResult"], function(VEGeocodeResult) { /* code goes here */ });

Description

(Added at v1.4)
Represents a Bing Maps address and its location. Many of the property definitions are taken from the Bing Maps documentation GeocodeResult Class. VEGeocodeResult has no constructor.

Note: there are restrictions when using Bing Maps geocoding:
  • Geocodes may not be stored for any purpose except caching for performance.
  • Geocodes may not be displayed on any map other than a Bing Map.
For more information on the Bing Maps terms of use, see the Microsoft Bing Maps Services Terms of Use.

Samples

Search for samples that use this class.

Properties

NameTypeSummary
addressVEAddressSpecifies address properties for the result.
bestViewExtentBest extent for displaying the result.
calculationMethodStringContains values that indicate the geocode method used to match the location to the map.
confidenceStringValue indicating how confident the service is about the result.
displayNameStringContains a display name for the result.
entityTypeStringFurther refines the geocode results that have been returned.
locationPointThe X and Y coordinates of the result in decimal degrees.
matchCodesStringAn array of values that indicate the geocoding level of the location match.
Property Details

<VEAddress> address

Specifies address properties for the result.

<Extent> bestView

Best extent for displaying the result.

<String> calculationMethod

Contains values that indicate the geocode method used to match the location to the map. The values are "Interpolation", "Parcel", and "Rooftop". For more information see https://learn.microsoft.com/en-us/previous-versions/cc980868(v=msdn.10) under "Match Methods".

<String> confidence

Value indicating how confident the service is about the result. Values are Low, Medium, and High.

<String> displayName

Contains a display name for the result.

<String> entityType

Further refines the geocode results that have been returned. For more details on entities and a list of entities that are returned see https://learn.microsoft.com/en-us/previous-versions/cc981001(v=msdn.10).

<Point> location

The X and Y coordinates of the result in decimal degrees.

<String> matchCodes

An array of values that indicate the geocoding level of the location match. For more information and a list of values, see https://learn.microsoft.com/en-us/previous-versions/cc980868(v=msdn.10).
Show Modal