com.supermap.onlineservices
Class GeocodingData
- java.lang.Object
-
- com.supermap.onlineservices.GeocodingData
-
public class GeocodingData extends java.lang.Object
Geocording Data class.Provides an interface to get the parsing data.
-
-
Constructor Summary
Constructors Constructor and Description GeocodingData()
The default constructor for constructing a newGeocodingData
object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description Address
getAddress()
Get the specific address description of the geocoding analysis.int
getConfidence()
Get the confidence of the matching results.java.lang.String
getFormatedAddress()
Get the description of the geocoded address names that conforms to the geocoding specification.Point2D
getLocation()
Get the geographic coordinates of the matching input address description, Returns the data if it is forward.java.lang.String
getName()
Get the record name of matching data.
-
-
-
Constructor Detail
-
GeocodingData
public GeocodingData()
The default constructor for constructing a newGeocodingData
object.
-
-
Method Detail
-
getFormatedAddress
public java.lang.String getFormatedAddress()
Get the description of the geocoded address names that conforms to the geocoding specification.- Returns:
- Return formatted address.
-
getAddress
public Address getAddress()
Get the specific address description of the geocoding analysis.- Returns:
- The specific address description of the geocoding analysis.
-
getLocation
public Point2D getLocation()
Get the geographic coordinates of the matching input address description, Returns the data if it is forward.- Returns:
- Return point.
-
getName
public java.lang.String getName()
Get the record name of matching data.- Returns:
- Return the record name of matching data.
-
getConfidence
public int getConfidence()
Get the confidence of the matching results.- Returns:
- Return confidence.
-
-