从数据库中怎么读取坐标
发布于 6 年前 作者 ucheng 7852 次浏览 来自 问答
  • 需求的场景描述(希望解决的问题)

云存储的数据是:_point":{“type”:“Point”,“coordinates”:[114.95082,27.82041]}

console.log(‘result.point:’ + $result._point);

console.log(‘point:’ + $result._point.coordinates);

打印日记如下:

2019-06-07T22:01:50.223Z  result.point:[object Object]

2019-06-07T22:01:50.223Z  point:undefined


  • 希望提供的能力

我想要计算2个坐标间的距离,从之前存储在云数据库中的坐标取出来计算与当前坐标的距离

2 回复

通过地理位置构造器构造的各个对象均可调用方法 toJSON 获得其等价的 GeoJSON 纯 JS 对象。

geoNear试试。

回到顶部