Package com.tomtom.sdk.common.geojson.feature

Types

Link copied to clipboard
data class Feature(    val geometry: Geometry?,     val properties: Properties?,     val boundingBox: GeoBoundingBox? = null) : GeoJsonObject

Represents a spatially bound entity. Consists of a Geometry object and an id. Both are optional. If geometry is absent, then feature is not placed on the map.

Link copied to clipboard
data class FeatureCollection(val features: List<Feature> = emptyList(), val boundingBox: GeoBoundingBox? = null) : GeoJsonObject

Represents a collection of Features.

Link copied to clipboard
data class Properties(val json: String)

A Properties object representing properties in Feature in the World Geodetic System 1984 (WGS 84) or a collection of Geometry objects.