Page Summary
-
GMSPlaceLikelihoodsCallbackis a block type used to handle the results of a place likelihood request. -
It provides an array of
GMSPlaceLikelihoodobjects, representing potential places and their likelihoods, or an error if the request failed. -
Developers should consult the
GMSPlacesClientdocumentation for usage details and to initiate place likelihood requests.
GMSPlaceLikelihoodsCallback
Deprecated
This method is replaced by GMSPlaceSearchNearbyResultCallback and will be removed in a future release.
typedef void (^GMSPlaceLikelihoodsCallback)(
NSArray<GMSPlaceLikelihood *> *_Nullable, NSError *_Nullable)Callback type for receiving array of GMSPlaceLikelihoods. If an error occurred, the array will
be nil and error will contain information about the error.
See
GMSPlacesClient