Point
data class Point @JvmOverloads constructor(val coordinates: Position, val bbox: BoundingBox? = null) : SingleGeometry, PointGeometry(source)
A Point geometry represents a single Position in coordinate space.
See RFC 7946 Section 3.1.2 for the full specification.
See also
Constructors
Link copied to clipboard
constructor(longitude: Double, latitude: Double, altitude: Double? = null, bbox: BoundingBox? = null)
Create a Point from individual coordinate components.
Types
Properties
Functions
Link copied to clipboard
Converts this Point to a geo
URI of the format geo:lat,lon
or geo:lat,lon,alt
as defined in RFC 7946 Section 9.