Point

open class Point : GeoJsonObject

Point coordinates are in x, y order (easting, northing for projected coordinates, longitude, and latitude for geographic coordinates):

{
    "type": "Point",
    "coordinates": [100.0, 0.0]
}
https://datatracker.ietf.org/doc/html/rfc7946#appendix-A.1

Constructors

Link copied to clipboard
constructor(lng: Double, lat: Double, alt: Double? = null)
constructor()

Properties

Link copied to clipboard
@Json(name = "bbox")
var bbox: List<Double>?
Link copied to clipboard
@Json(name = "coordinates")
var coordinates: LngLatAlt
Link copied to clipboard

In the (abridged) Feature object shown below

Link copied to clipboard
@Json(name = "properties")
var properties: HashMap<String, Any?>?
Link copied to clipboard
@Json(name = "type")
var type: String