Returns a rectangular location to filter place results inside the boundaries.
Supports filtering as a restriction where results must be inside the bounds, or as a bias where
results in the bounds are preferred.
[[["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 2025-01-28 UTC."],[[["\u003cp\u003eThis documentation outlines globally available functions for utilizing Google Places in iOS development.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMSPlaceRectangularLocationOption\u003c/code\u003e allows filtering or biasing place results within a rectangular boundary defined by northeast and southwest coordinates.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMSPlaceCircularLocationOption\u003c/code\u003e enables biasing place results towards a circular area specified by a center coordinate and radius.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMSPlacePropertyArray\u003c/code\u003e provides access to an array of all available place properties for detailed information retrieval.\u003c/p\u003e\n"]]],["The `GMSPlaceRectangularLocationOption` function defines a rectangular area using northeast and southwest coordinates to filter or prioritize place results within those boundaries. `GMSPlaceCircularLocationOption` creates a circular area defined by a center point and radius, biasing search results towards locations within that circle. The `GMSPlacePropertyArray` function retrieves a comprehensive list of all available `GMSPlaceProperty` options as a string array.\n"],null,["Functions\n\nThe following functions are available globally.\n[Protocols](#/Protocols)\n\n- `\n ``\n ``\n `\n\n [GMSPlaceRectangularLocationOption](/maps/documentation/places/ios-sdk/reference/objc/Functions/GMSPlaceRectangularLocationOption)`\n ` \n Returns a rectangular location to filter place results inside the boundaries.\n Supports filtering as a restriction where results must be inside the bounds, or as a bias where\n results in the bounds are preferred. \n\n Declaration \n Swift \n\n func GMSPlaceRectangularLocationOption(_ northEastBounds: CLLocationCoordinate2D, _ southWestBounds: CLLocationCoordinate2D) -\u003e any /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationBias & /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationRestriction\n\n Objective-C \n\n extern id\u003c/maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationBias, /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationRestriction\u003e _Nonnull GMSPlaceRectangularLocationOption(\n CLLocationCoordinate2D northEastBounds,\n CLLocationCoordinate2D southWestBounds)\n\n Parameters\n\n |-------------------------|--------------------------------------|\n | ` `*northEastBounds*` ` | The north east corner of the bounds. |\n | ` `*southWestBounds*` ` | The south west corner of the bounds. |\n\n- `\n ``\n ``\n `\n\n [GMSPlaceCircularLocationOption](/maps/documentation/places/ios-sdk/reference/objc/Functions/GMSPlaceCircularLocationOption)`\n ` \n Returns a circular location to bias place results.\n Supports filtering as a bias where results inside the circle are preferred. \n\n Declaration \n Swift \n\n func GMSPlaceCircularLocationOption(_ center: CLLocationCoordinate2D, _ radius: CLLocationDistance) -\u003e any /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationBias & /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationRestriction\n\n Objective-C \n\n extern id\u003c\n /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationBias,\n /maps/documentation/places/ios-sdk/reference/objc/Protocols/GMSPlaceLocationRestriction\u003e _Nonnull GMSPlaceCircularLocationOption(CLLocationCoordinate2D\n center,\n CLLocationDistance\n radius)\n\n Parameters\n\n |----------------|---------------------------|\n | ` `*center*` ` | The center of the circle. |\n | ` `*radius*` ` | The radius of the circle. |\n\n- `\n ``\n ``\n `\n\n [GMSPlacePropertyArray](/maps/documentation/places/ios-sdk/reference/objc/Functions/GMSPlacePropertyArray)`\n ` \n Returns an array of all available [GMSPlaceProperty](/maps/documentation/places/ios-sdk/reference/objc/Type-Definitions/GMSPlaceProperty). \n\n Declaration \n Swift \n\n func GMSPlacePropertyArray() -\u003e [String]\n\n Objective-C \n\n extern NSArray\u003cNSString *\u003e *_Nonnull GMSPlacePropertyArray(void)"]]