CloudReverseGeocodingResult¶
Namespace: ThinkGeo.Core
Represents the result of the ReverseGeocoding.
public class CloudReverseGeocodingResult
Inheritance Object → CloudReverseGeocodingResult
Remarks:
Represents the result of the ReverseGeocoding.
Properties¶
QueryFeature¶
The ReverseGeocoding feature.
public Feature QueryFeature { get; }
Property Value¶
BestMatchLocation¶
The best matching location.
public CloudReverseGeocodingLocation BestMatchLocation { get; }
Property Value¶
NearbyLocations¶
A collection of the matching location order by the distance ASC.
public Collection<CloudReverseGeocodingLocation> NearbyLocations { get; }
Property Value¶
Collection<CloudReverseGeocodingLocation>
Exception¶
The exception when reverse geocoding
public ThinkGeoCloudApplicationException Exception { get; }
Property Value¶
ThinkGeoCloudApplicationException
Constructors¶
CloudReverseGeocodingResult(Feature, CloudReverseGeocodingLocation, ThinkGeoCloudApplicationException)¶
The constructor of this class.
public CloudReverseGeocodingResult(Feature queryFeature, CloudReverseGeocodingLocation bestMatchLocation, ThinkGeoCloudApplicationException exception)
Parameters¶
queryFeature Feature
The ReverseGeocoding feature
bestMatchLocation CloudReverseGeocodingLocation
The best matching location
exception ThinkGeoCloudApplicationException
The exception when reverse geocoding