Package com.tomtom.sdk.search.client.model.geometry
Types
Link copied to clipboard
data class CircleGeometry(val position: GeoCoordinate, val radiusInMeters: Int) : Geometry
Content copied to clipboard
Represents information about a circle.
Link copied to clipboard
An interface that represents geometry in the Geometry Search API. There can be three different types of geometry: CircleGeometry, PolygonGeometry or RectangleGeometry.
Link copied to clipboard
Describes a geometry data for a search result.
Link copied to clipboard
data class PolygonGeometry(@Size(min = 0, max = 50) val vertices: List<GeoCoordinate>) : Geometry
Content copied to clipboard
Represents information about a polygon.
Link copied to clipboard
Represents a rectangle.