GeoJsonPoint

data class GeoJsonPoint(val type: GeoJsonPoint.Type? = null, val coordinates: List<Double>? = null)

GeoJSon Point Geometry

Parameters

type

the geometry type

coordinates

An array of comma separated {latitude,longitude} strings.

Constructors

Link copied to clipboard
constructor(type: GeoJsonPoint.Type? = null, coordinates: List<Double>? = null)

Types

Link copied to clipboard

the geometry type

Properties

Link copied to clipboard
@SerializedName(value = "coordinates")
val coordinates: List<Double>? = null
Link copied to clipboard
@SerializedName(value = "type")
val type: GeoJsonPoint.Type? = null