PathGeometry

data class PathGeometry(    val id: Int,     val pathId: Int,     val startOffset: Distance,     val endOffset: Distance,     val coordinate: GeoCoordinate,     val altitude: Distance?) : HorizonElement

Describes path geometry of the horizon element.

Parameters

id

Identifier of this element.

pathId

Identifier of the path this element belongs to.

startOffset

Start offset on the path.

endOffset

End offset on the path.

coordinate

Coordinate of the geometry point.

altitude

Altitude at the geometry point. Null if altitude is not supported.

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

Constructors

Link copied to clipboard
fun PathGeometry(    id: Int,     pathId: Int,     startOffset: Distance,     endOffset: Distance,     coordinate: GeoCoordinate,     altitude: Distance?)

Properties

Link copied to clipboard
val altitude: Distance?
Link copied to clipboard
val coordinate: GeoCoordinate
Link copied to clipboard
open override val endOffset: Distance
Link copied to clipboard
open override val id: Int
Link copied to clipboard
open override val pathId: Int
Link copied to clipboard
open override val startOffset: Distance