Package-level declarations

Types

Link copied to clipboard
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.

Link copied to clipboard
class MapboxParameters(val permanent: Boolean = false, val autocomplete: Boolean = true, val limit: Int? = null, val bbox: MapboxBoundingBox? = null, val country: String? = null, val language: String? = null, val proximity: String? = null, val types: MapboxTypesList? = null, val worldView: MapboxWorldView? = null) : QueryParameters

Options for the Mapbox geocoder.

Link copied to clipboard

The types of features that can be returned by the Mapbox Geocoding API.

Link copied to clipboard

A list of MapboxTypes to be used as a query parameter.

Link copied to clipboard

The world view parameter is used to filter the results to a specific country or region.

Functions

Link copied to clipboard

Create a MapboxParameters instance with the provided block.