EntryPoint

data class EntryPoint(    val type: EntryType,     val position: GeoCoordinate,     val functions: List<String> = emptyList())

The Point Of Interest entry point.

Parameters

type

The type of the entry point.

position

The geographic position of the entry point.

functions

If present, represents the type of access for the Point Of Interest.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun EntryPoint(    type: EntryType,     position: GeoCoordinate,     functions: List<String> = emptyList())

Properties

Link copied to clipboard
val functions: List<String>
Link copied to clipboard
val position: GeoCoordinate
Link copied to clipboard
val type: EntryType