CoordinatesArgs

data class CoordinatesArgs(val latitude: Output<String>? = null, val longitude: Output<String>? = null) : ConvertibleToJava<CoordinatesArgs>

Definition of Coordinates

Constructors

Link copied to clipboard
constructor(latitude: Output<String>? = null, longitude: Output<String>? = null)

Properties

Link copied to clipboard
val latitude: Output<String>? = null

Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).

Link copied to clipboard
val longitude: Output<String>? = null

Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).

Functions

Link copied to clipboard
open override fun toJava(): CoordinatesArgs