db.Geo

该对象上含有地理位置构造器。

拥有字段如下:

字段 说明
Point 地理位置点

db.Geo.Point

构造一个地理位置点。可用于查询条件、更新字段值或新增记录时的字段值。

方法签名如下:

  1. function Point(longitude: number, latitude: number): Point

方法接受两个必填参数,第一个是经度(longitude),第二个是纬度(latitude),务必注意顺序

示例代码

  1. const cloud = require('wx-server-sdk')
  2. cloud.init()
  3. const db = cloud.database()
  4. exports.main = async (event, context) => {
  5. try {
  6. return await db.collection('todos').add({
  7. description: 'eat an apple',
  8. location: new db.Geo.Point(113, 23)
  9. })
  10. } catch(e) {
  11. console.error(e)
  12. }
  13. }

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/db.geo.html