/**
* This file was auto-generated on 2023-10-24T15:44:49.873Z
* flickr.places.placesForBoundingBox
* Return all the locations of a matching place type for a bounding box.
The maximum allowable size of a bounding box (the distance between the SW and NE corners) is governed by the place type you are requesting. Allowable sizes are as follows:
- neighbourhood: 3km (1.8mi)
- locality: 7km (4.3mi)
- county: 50km (31mi)
- region: 200km (124mi)
- country: 500km (310mi)
- continent: 1500km (932mi)
* Permissions required: none
*/
export type FlickrPlacesPlacesForBoundingBoxParams = {
/**
* A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched. The 4 values represent the bottom-left corner of the box and the top-right corner, minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude.
*/
bbox: string;
/**
* The name of place type to using as the starting point to search for places in a bounding box. Valid placetypes are:
- neighbourhood
- locality
- county
- region
- country
- continent
The "place_type" argument has been deprecated in favor of the "place_type_id" argument. It won't go away but it will not be added to new methods. A complete list of place type IDs is available using the flickr.places.getPlaceTypes method. (While optional, you must pass either a valid place type or place type ID.)
*/
place_type?: string;
/**
* The numeric ID for a specific place type to cluster photos by.
Valid place type IDs are :
- 22: neighbourhood
- 7: locality
- 8: region
- 12: country
- 29: continent
(While optional, you must pass either a valid place type or place type ID.)
*/
place_type_id?: string;
};