User Tools

Site Tools


api:thinkgeo.cloud.reversegeocodingclient

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

api:thinkgeo.cloud.reversegeocodingclient [2018/12/19 08:04] (current)
tgwikiupdate created
Line 1: Line 1:
 +====== ThinkGeo.Cloud.ReverseGeocodingClient ======
 +
 +
 +===== Inheritance Hierarchy =====
 +  *System.Object
 +    *ThinkGeo.Cloud.BaseClient
 +      ***ThinkGeo.Cloud.ReverseGeocodingClient**
 +===== Members Summary =====
 +==== Public Constructors ====
 +** {{wiki:​PublicMethod.gif|}} ReverseGeocodingClient() **
 +
 +  * //​Initilizes an instance. You need apply client Id and secret by properties.//​
 +== Remarks ==
 +  * //N/A//
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ReverseGeocodingClient(String,​String) **
 +
 +  * //​Initializes an instance with ClientID and ClientSecret. It will send a request to GIS Server to gain the token which will be added to the Header for all the requests.//
 +== Remarks ==
 +  * //N/A//
 +== Parameters ==
 +  * //​clientId//​
 +    * Type:String
 +    * Description:​The ClientID for the auth.
 +
 +  * //​clientSecret//​
 +    * Type:String
 +    * Description:​The ClientSecret for the auth.
 +
 +<div newline></​div>​
 +==== Protected Constructors ====
 +==== Public Methods ====
 +** {{wiki:​PublicMethod.gif|}} SearchPointInDecimalDegree(Double,​Double,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //​latitude//​
 +    * Type:Double
 +    * Description:​The latitude of the point.
 +
 +  * //​longitude//​
 +    * Type:Double
 +    * Description:​The longitude of the point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointInDecimalDegree(Double,​Double,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //​latitude//​
 +    * Type:Double
 +    * Description:​The latitude of the point.
 +
 +  * //​longitude//​
 +    * Type:Double
 +    * Description:​The longitude of the point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPoint(Double,​Double,​Int32,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPoint(Double,​Double,​Int32,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPoint(Double,​Double,​String,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPoint(Double,​Double,​String,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointInDecimalDegreeAsync(Double,​Double,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //​latitude//​
 +    * Type:Double
 +    * Description:​The latitude of the point.
 +
 +  * //​longitude//​
 +    * Type:Double
 +    * Description:​The longitude of the point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointInDecimalDegreeAsync(Double,​Double,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //​latitude//​
 +    * Type:Double
 +    * Description:​The latitude of the point.
 +
 +  * //​longitude//​
 +    * Type:Double
 +    * Description:​The longitude of the point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointAsync(Double,​Double,​Int32,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointAsync(Double,​Double,​Int32,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointAsync(Double,​Double,​String,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchPointAsync(Double,​Double,​String,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //x//
 +    * Type:Double
 +    * Description:​The X coordinate of the point.
 +
 +  * //y//
 +    * Type:Double
 +    * Description:​The Y coordinate of the point.
 +
 +  * //​pointProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of point.
 +
 +  * //​searchRadius//​
 +    * Type:Double
 +    * Description:​The maximum radius around the input coordinate to search for places.
 +
 +  * //​unitOfsearchRadius//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:​The unit of measure in which the SearchRadius is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineInDecimalDegree(LineShape,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineInDecimalDegree(LineShape,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLine(LineShape,​Int32,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLine(LineShape,​Int32,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLine(LineShape,​String,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLine(LineShape,​String,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineInDecimalDegreeAsync(LineShape,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineInDecimalDegreeAsync(LineShape,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineAsync(LineShape,​Int32,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineAsync(LineShape,​Int32,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineAsync(LineShape,​String,​Double,​DistanceUnit) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchLineAsync(LineShape,​String,​Double,​DistanceUnit,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //line//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.LineShape|LineShape]]
 +    * Description:​The line feature to search.
 +
 +  * //​lineProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of line.
 +
 +  * //​searchBuffer//​
 +    * Type:Double
 +    * Description:​The buffer of search line.
 +
 +  * //​unitOfsearchBuffer//​
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]]
 +    * Description:>​The unit of measure in which the searchBuffer is expressed.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaInDecimalDegree(PolygonShape) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaInDecimalDegree(PolygonShape,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchArea(PolygonShape,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of area.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchArea(PolygonShape,​Int32,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of area.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchArea(PolygonShape,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of area.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchArea(PolygonShape,​String,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) in which to express the result.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaInDecimalDegreeAsync(PolygonShape) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaInDecimalDegreeAsync(PolygonShape,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaAsync(PolygonShape,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of area.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaAsync(PolygonShape,​Int32,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The SRID (spatial reference system ID) of area.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaAsync(PolygonShape,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of area.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} SearchAreaAsync(PolygonShape,​String,​ReverseGeocodingOptions) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.Cloud.ReverseGeocodingResult|ReverseGeocodingResult]]>​
 +  * Description:​The search result.
 +
 +== Parameters ==
 +  * //area//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]]
 +    * Description:​The polygon feature to search.
 +
 +  * //​areaProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The proj4string (coordinate system) of area.
 +
 +  * //options//
 +    * Type:​[[ThinkGeo.Cloud.ReverseGeocodingOptions|ReverseGeocodingOptions]]
 +    * Description:​The options for the searching.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Dispose() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ToString() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Equals(Object) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Boolean
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //obj//
 +    * Type:Object
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} GetHashCode() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Int32
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} GetType() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Type
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +===== Protected Methods =====
 +** {{wiki:​ProtectedMethod.gif|}} AuthenticateWebRequest(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetToken() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetTokenCore() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} SendWebRequest(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​WebResponse
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} SendWebRequestAsync(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​WebResponse>​
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetNextCandidateBaseUri() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetNextCandidateBaseUriCore() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} OnGettingAccessToken(GettingAccessTokenEventArgs) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //e//
 +    * Type:​[[ThinkGeo.Cloud.GettingAccessTokenEventArgs|GettingAccessTokenEventArgs]]
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} OnSendingWebRequest(SendingWebRequestEventArgs) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //e//
 +    * Type:​[[ThinkGeo.MapSuite.Layers.SendingWebRequestEventArgs|SendingWebRequestEventArgs]]
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} Finalize() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Object
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +==== Public Properties ====
 +** {{wiki:​PublicProperty.gif|}} ClientId **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:String
 +
 +** {{wiki:​PublicProperty.gif|}} ClientSecret **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:String
 +
 +** {{wiki:​PublicProperty.gif|}} BaseUris **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:​Collection<​Uri>​
 +
 +==== Protected Properties ====
 +==== Public Events ====
  
api/thinkgeo.cloud.reversegeocodingclient.txt ยท Last modified: 2018/12/19 08:04 by tgwikiupdate