从数据库中怎么读取坐标
- 需求的场景描述(希望解决的问题)
云存储的数据是:_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个坐标间的距离,从之前存储在云数据库中的坐标取出来计算与当前坐标的距离