类 GeoCircle
表示地理空间GeoWithin(IEmbeddedObject?, GeoShapeBase)查询的球体表面的圆。
命名空间: Realms
程序集:Realm.dll
语法
public class GeoCircle : GeoShapeBase
构造函数
| 编辑本页 查看源代码GeoCircle(GeoPoint, Distance)
初始化GeoCircle类的新实例。
声明
public GeoCircle(GeoPoint center, Distance radius)
参数
类型 | 名称 | 说明 |
---|---|---|
GeoPoint | 中心 | 圆的中心。 |
距离 | 半径 | 圆的半径。 |
GeoCircle(GeoPoint, double)
初始化GeoCircle类的新实例。
声明
public GeoCircle(GeoPoint center, double radiusInRadians)
参数
类型 | 名称 | 说明 |
---|---|---|
GeoPoint | 中心 | 圆的中心。 |
double | RadiusInRadians | 圆的半径(以弧度为单位)。 |
属性
| 编辑本页 查看源代码中心
获取圆的中心。
声明
public GeoPoint Center { get; }
属性值
类型 | 说明 |
---|---|
GeoPoint | 圆的中心。 |
半径
获取圆的半径(以弧度为单位)。
声明
public double Radius { get; }
属性值
类型 | 说明 |
---|---|
double | 圆的半径。 |
方法
| 编辑本页 查看源代码ToString()
返回值的字符串表示形式。
声明
public override string ToString()
返回:
类型 | 说明 |
---|---|
字符串 | 值的字符串表示形式。 |