Enum Status
- Namespace
- GoogleMapsApi.Entities.Geocoding.Response
- Assembly
- GoogleMapsApi.dll
The "status" field within the Geocoding response object contains the status of the request, and may contain debugging information to help you track down why Geocoding is not working. The "status" field may contain the following values:
public enum Status
Fields
INVALID_REQUEST = 4Generally indicates that the query (address or latlng) is missing.
OK = 0Indicates that no errors occurred; the address was successfully parsed and at least one geocode was returned.
OVER_QUERY_LIMIT = 2Indicates that you are over your quota.
REQUEST_DENIED = 3Indicates that your request was denied.
ZERO_RESULTS = 1Indicates that the geocode was successful but returned no results. This may occur if the geocode was passed a non-existent address or a latlng in a remote location.