Link

data class Link(val href: String, val text: String? = null, val type: String? = null)(source)

Represents a link to an external resource. This allows a GPX file to be associated with a web page, photo, or any other information on the web.

See linkType.

Constructors

Link copied to clipboard
constructor(href: String, text: String? = null, type: String? = null)

Properties

Link copied to clipboard

The URL of the link.

Link copied to clipboard
val text: String?

The text of the link.

Link copied to clipboard
val type: String?

The MIME type of the content.