Package-level declarations

Types

Link copied to clipboard
class ChildMetadata(val mapboxId: String, val name: String?, val category: String?, val coordinates: Point?) : Parcelable

Metadata for children (ie. sub destinations) for POIs.

Link copied to clipboard
@MapboxExperimental
object ImageCategory

The category of an image to get the correct usage in a user presentation. One of examples is OCPI image category

Link copied to clipboard
class ImageInfo @MapboxExperimental constructor(val url: String, @Px val width: Int, @Px val height: Int, val thumbnailUrl: String?, val imageCategory: String?, val type: String?) : Parcelable

Image information.

Link copied to clipboard
abstract class OpenHours : Parcelable

Availability information for the POI.

Link copied to clipboard
data class OpenPeriod(val open: WeekTimestamp, val closed: WeekTimestamp) : Parcelable

Time interval, when POI is available.

Link copied to clipboard
class ParkingData(val totalCapacity: Int, val reservedForDisabilities: Int) : Parcelable

Parking information for the POI.

Link copied to clipboard

Enum, representing each day of the week - Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday.

Link copied to clipboard
data class WeekTimestamp(val day: WeekDay, val hour: Int, val minute: Int) : Parcelable

Specific time in a week span in Local Timezone. Please note, that hour = 0, minute = 0 represents midnight in morning, hour = 24, minute = 0 represents midnight at night.