Show / Hide Table of Contents

Class Circle

Circle with a LatLng as center and radius.

Inheritance
object
Circle
Implements
IMessage<Circle>
IEquatable<Circle>
IDeepCloneable<Circle>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Maps.Places.V1
Assembly: Google.Maps.Places.V1.dll
Syntax
public sealed class Circle : IMessage<Circle>, IEquatable<Circle>, IDeepCloneable<Circle>, IBufferMessage, IMessage

Constructors

Circle()

Declaration
public Circle()

Circle(Circle)

Declaration
public Circle(Circle other)
Parameters
Type Name Description
Circle other

Properties

Center

Required. Center latitude and longitude.

The range of latitude must be within [-90.0, 90.0]. The range of the longitude must be within [-180.0, 180.0].

Declaration
public LatLng Center { get; set; }
Property Value
Type Description
LatLng

Radius

Required. Radius measured in meters. The radius must be within [0.0, 50000.0].

Declaration
public double Radius { get; set; }
Property Value
Type Description
double
In this article
Back to top Generated by DocFX