Package-level declarations

Types

Link copied to clipboard
class Circle

A Circle overlay which was added to the map.

Link copied to clipboard

Controls Circle-specific features on the map. Allows Circle management and the user interactions with the Circle.

Link copied to clipboard

Exception thrown when a Circle with the given id cannot be found on the map.

Link copied to clipboard
data class CircleOptions(val coordinate: GeoPoint, @FloatRange(from = 0.0, fromInclusive = false) val radius: Double, val radiusUnit: RadiusUnit = DEFAULT_RADIUS_UNIT, val fillColor: Color = DEFAULT_FILL_COLOR, val outlineColor: Color = DEFAULT_OUTLINE_COLOR, @FloatRange(from = 0.0) val outlineRadius: Double = DEFAULT_OUTLINE_RADIUS, val isClickable: Boolean = true)

Configures options for a Circle overlay which can be added and displayed on the map. See TomTomMap.addCircle(options CircleOptions).

Link copied to clipboard
fun interface OnCircleClickListener

Interface for notifying about the Circle being clicked.

Link copied to clipboard

Options related to a radius given in the CircleOptions. Determines the way that circle is drawn on map.