Cập nhật tài liệu của bạn và tạo một bộ sưu tập mới
db.location.aggregate([
{ "$addFields": {
"location": {
"type": "Point",
"coordinates": ["$location.loc.lng", "$location.loc.lat"]
},
"geocode": "$location.geocode"
}},
{ "$out": "location" }
])
Sau đó, tạo chỉ mục trên location
lĩnh vực
db.location.createIndex({ "location": "2d" })