NamedCircle

data class NamedCircle(    val name: String,     val origin: GeoCoordinate,     val radius: Distance) : Range

Represents a named circle Range.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

name

The name of the Range.

origin

The GeoCoordinates of the center of the Circle.

radius

The Range's radius.

Constructors

Link copied to clipboard
fun NamedCircle(    name: String,     origin: GeoCoordinate,     radius: Distance)

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val origin: GeoCoordinate
Link copied to clipboard
val radius: Distance