Page Summary
-
GMSGeocoderErrorCodeis an enumeration that defines error codes for theGMSGeocoderclass. -
These error codes are embedded within
NSErrorobjects and provide information about issues encountered during geocoding operations. -
The two defined error codes are
kGMSGeocoderErrorInvalidCoordinate, indicating an invalid coordinate provided, andkGMSGeocoderErrorInternal, representing an internal error within the geocoder.
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