类型别名 GeoCircle

Geo Circle: {
    中心: GeoPoint
    距离: 数字
}

表示球面几何中的圆,可用作地理空间查询的参数。

类型声明

  • 中心: GeoPoint

    圆的中心。

  • 距离: 数字

    圆的半径(以弧度为单位)。 您可以使用kmToRadiansmiToRadians分别将公里和英里转换为弧度。

例子

let circle: GeoCircle = {
center: [20, 40],
distance: 0.05,
};
realm.objects(Restaurant).filtered("location geoWithin $0", circle)

使用TypeDoc生成