表示球面几何中的圆,可用作地理空间查询的参数。
圆的中心。
圆的半径(以弧度为单位)。 您可以使用kmToRadians和miToRadians分别将公里和英里转换为弧度。
let circle: GeoCircle = { center: [20, 40], distance: 0.05,};realm.objects(Restaurant).filtered("location geoWithin $0", circle) 复制
let circle: GeoCircle = { center: [20, 40], distance: 0.05,};realm.objects(Restaurant).filtered("location geoWithin $0", circle)
使用TypeDoc生成
表示球面几何中的圆,可用作地理空间查询的参数。