MapboxBoundingBox
class MapboxBoundingBox(val minLongitude: Double, val minLatitude: Double, val maxLongitude: Double, val maxLatitude: Double) : QueryParamValue
A bounding box to limit search results to a specific area.
See the Mapbox API documentation for more information.
Properties
Functions
Link copied to clipboard
fun copy(minLongitude: Double = this.minLongitude, minLatitude: Double = this.minLatitude, maxLongitude: Double = this.maxLongitude, maxLatitude: Double = this.maxLatitude): MapboxBoundingBox
Create a copy of MapboxBoundingBox with the given or current values.