微信小程序开发文档 微信小程序云开发服务端数据库API 地理位置构造器

2024-02-25 开发教程 微信小程序开发文档 匿名 3

db.Geo

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

拥有字段如下:

字段说明
Point地理位置点

db.Geo.Point

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

方法签名如下:

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

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

示例代码

const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
exports.main = async (event, context) => {
try {
return await db.collection('todos').add({
description: 'eat an apple',
location: new db.Geo.Point(113, 23)
})
} catch(e) {
console.error(e)
}
}