Package com.tomtom.sdk.search.client.model.geometry

Types

Link copied to clipboard
data class CircleGeometry(val position: GeoCoordinate, val radiusInMeters: Int) : Geometry

Represents information about a circle.

Link copied to clipboard
interface Geometry

An interface that represents geometry in the Geometry Search API. There can be two different types of geometry: CircleGeometry or PolygonGeometry.

Link copied to clipboard
data class PolygonGeometry(val vertices: List<GeoCoordinate>) : Geometry

Represents information about a polygon.

Link copied to clipboard
data class RectangleGeometry(val boundingBox: GeoBoundingBox) : Geometry

Represents information about a rectangle.