+ /// No errors occurred; the address was successfully parsed and its geocode was returned.
+ /// </summary>
Success = 200,
+
+ /// <summary>
+ /// A geocoding or directions request could not be successfully processed, yet the exact reason for the failure is unknown.
+ /// </summary>
ServerError = 500,
+
+ /// <summary>
+ /// An empty address was specified in the HTTP q parameter.
+ /// </summary>
MissingAddress = 601,
+
+ /// <summary>
+ /// No corresponding geographic location could be found for the specified address, possibly because the address is relatively new, or because it may be incorrect.
+ /// </summary>
UnknownAddress = 602,
+
+ /// <summary>
+ /// The geocode for the given address or the route for the given directions query cannot be returned due to legal or contractual reasons.
+ /// </summary>
UnavailableAddress = 603,
- BadKey = 610
+
+ /// <summary>
+ /// The given key is either invalid or does not match the domain for which it was given.
+ /// </summary>
+ BadKey = 610,
+
+ /// <summary>
+ /// The given key has gone over the requests limit in the 24 hour period or has submitted too
+ /// many requests in too short a period of time. If you're sending multiple requests in parallel
+ /// or in a tight loop, use a timer or pause in your code to make sure you don't send the requests too quickly.