Command.geoWithin(options: Object): Command

支持端:小程序 , 云函数

找出字段值在指定区域内的记录,无排序。指定的区域必须是多边形(Polygon)或多边形集合(MultiPolygon)。

参数

options: Object

属性类型默认值必填说明
geometryObject地理信息结构,Polygon,MultiPolygon,或 { centerSphere }

返回值

Command

索引要求

需对查询字段建立地理位置索引

示例代码 1:给定多边形

  1. const _ = db.command
  2. const { Point, LineString, Polygon } = db.Geo
  3. db.collection('restaurants').where({
  4. location: _.geoWithin({
  5. geometry: Polygon([
  6. LineString([
  7. Point(0, 0),
  8. Point(3, 2),
  9. Point(2, 3),
  10. Point(0, 0)
  11. ])
  12. ]),
  13. })
  14. })

示例代码 2:给定圆形

可以不用 geometry 而用 centerSphere 构建一个圆形。

centerSphere 对应的值的定义是:[ [纬度, 经度], 半径 ]

半径需以弧度计,比如需要 10km 的半径,则用距离除以地球半径 6378.1km 得出的数字。

  1. const _ = db.command
  2. db.collection('restaurants').where({
  3. location: _.geoWithin({
  4. centerSphere: [
  5. [-88, 30],
  6. 10 / 6378.1,
  7. ]
  8. })
  9. })