SearchArea
enum SearchArea
The area to search.
-
Searches for results closest to the given coordinates.
Declaration
Swift
case near(Geo.Coordinates) -
Filters the results by returning only Places within the provided bounding box.
Declaration
Swift
case within(Geo.BoundingBox) -
Creates a SearchArea that returns results closest to the given CLLocationCoordinate2D.
Declaration
Swift
static func near(_ coordinates: CLLocationCoordinate2D) -> Geo.SearchAreaParameters
coordinatesThe coordinates for the search area.
Return Value
The SearchArea.
View on GitHub