[[["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\u003eGMSGeocoder\u003c/code\u003e provides reverse geocoding functionality, converting coordinates into addresses.\u003c/p\u003e\n"],["\u003cp\u003eIt offers a shared instance through the \u003ccode\u003egeocoder\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ereverseGeocodeCoordinate\u003c/code\u003e method handles the process of converting coordinates to addresses asynchronously.\u003c/p\u003e\n"],["\u003cp\u003eResults are delivered via a completion handler in Objective-C or as an asynchronous return value in Swift.\u003c/p\u003e\n"]]],[],null,["GMSGeocoder \n\n @interface GMSGeocoder : NSObject\n\nExposes a service for reverse geocoding. This maps Earth coordinates (latitude and longitude) to\na collection of addresses near that coordinate.\n- `\n ``\n ``\n `\n\n [+geocoder](#/c:objc(cs)GMSGeocoder(cm)geocoder)`\n ` \n\n Declaration \n Objective-C \n\n + (GMSGeocoder *)geocoder;\n\n- `\n ``\n ``\n `\n\n [-reverseGeocodeCoordinate:completionHandler:](#/c:objc(cs)GMSGeocoder(im)reverseGeocodeCoordinate:completionHandler:)`\n ` \n Reverse geocodes a coordinate on the Earth's surface. \n\n Declaration \n Swift \n\n func reverseGeocodeCoordinate(_ coordinate: CLLocationCoordinate2D) async throws -\u003e ../Classes/GMSReverseGeocodeResponse.html\n\n Objective-C \n\n - (void)reverseGeocodeCoordinate:(CLLocationCoordinate2D)coordinate\n completionHandler:(nonnull ../Type-Definitions/GMSReverseGeocodeCallback.html)handler;\n\n Parameters\n\n |--------------------|----------------------------------------------------------------------------------------------------------------------------|\n | ` `*coordinate*` ` | The coordinate to reverse geocode. |\n | ` `*handler*` ` | The callback to invoke with the reverse geocode results. The callback will be invoked asynchronously from the main thread. |"]]