A circle on the earth, as defined by a center point and a radius.

interface Circle {
    Center: undefined | number[];
    Radius: undefined | number;
}

Properties

Properties

Center: undefined | number[]

A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].

Radius: undefined | number

The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).