Page Summary
-
GMSGeocoderErrorCodeis an enumeration that defines error codes for theGMSGeocoderclass. -
These error codes are embedded within
NSErrorobjects, providing context for errors encountered during geocoding operations. -
The error code
kGMSGeocoderErrorInvalidCoordinate(value 1) signifies that an invalid coordinate was provided. -
The error code
kGMSGeocoderErrorInternal(value 2) indicates that an internal error occurred within the geocoding process.
GMSGeocoderErrorCode
enum GMSGeocoderErrorCode : NSInteger {}GMSGeocoder error codes, embedded in NSError.
-
Declaration
Swift
case invalidCoordinate = 1Objective-C
kGMSGeocoderErrorInvalidCoordinate = 1 -
Declaration
Swift
case `internal` = 2Objective-C
kGMSGeocoderErrorInternal