[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-15 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSGeocoderErrorCode\u003c/code\u003e is an enumeration that defines error codes for the \u003ccode\u003eGMSGeocoder\u003c/code\u003e class.\u003c/p\u003e\n"],["\u003cp\u003eThese error codes are embedded within \u003ccode\u003eNSError\u003c/code\u003e objects, providing context for errors encountered during geocoding operations.\u003c/p\u003e\n"],["\u003cp\u003eThe error code \u003ccode\u003ekGMSGeocoderErrorInvalidCoordinate\u003c/code\u003e (value 1) signifies that an invalid coordinate was provided.\u003c/p\u003e\n"],["\u003cp\u003eThe error code \u003ccode\u003ekGMSGeocoderErrorInternal\u003c/code\u003e (value 2) indicates that an internal error occurred within the geocoding process.\u003c/p\u003e\n"]]],["The content defines error codes for the `GMSGeocoder` class, which are embedded in `NSError`. There are two specific error codes: `kGMSGeocoderErrorInvalidCoordinate` (value 1), indicating an invalid coordinate, and `kGMSGeocoderErrorInternal` (value 2), denoting an internal error. Both codes have equivalent declarations in Swift (using `case`) and Objective-C (using `kGMSGeocoderError`).\n"],null,["# GoogleNavigation Framework Reference\n\nGMSGeocoderErrorCode\n====================\n\n enum GMSGeocoderErrorCode : NSInteger {}\n\n[GMSGeocoder](../Classes/GMSGeocoder.html) error codes, embedded in NSError.\n- `\n ``\n ``\n `\n\n ### [kGMSGeocoderErrorInvalidCoordinate](#/c:@E@GMSGeocoderErrorCode@kGMSGeocoderErrorInvalidCoordinate)\n\n `\n ` \n\n #### Declaration\n\n Swift \n\n case invalidCoordinate = 1\n\n Objective-C \n\n kGMSGeocoderErrorInvalidCoordinate = 1\n\n- `\n ``\n ``\n `\n\n ### [kGMSGeocoderErrorInternal](#/c:@E@GMSGeocoderErrorCode@kGMSGeocoderErrorInternal)\n\n `\n ` \n\n #### Declaration\n\n Swift \n\n case `internal` = 2\n\n Objective-C \n\n kGMSGeocoderErrorInternal"]]