근처 좌표 문장 조회

1667 단어 mongodb
장면: 좌표 에 따라 부근의 일정한 거 리 를 조회 하 는 자전거 데이터 구 조 는 다음 과 같다.
{
    "_id" : ObjectId("5a8ac5ea2fec3e02c4d7e0e0"),//    
    "bike_no" : "2000003",                       //    
    "location" : {                               //        ,type     ,coordinates    
        "type" : "Point",
        "coordinates" : [ 
            113.685102, 
            34.802361
        ]
    },
    "status" : 1                                //      
}

근처 거리의 자전거 sql 데 드 코스 를 알 아 보고 기억 하 시 면 됩 니 다.
db.getCollection('bike-position').find({
    location: {
        $nearSphere: {
            type: "Point",
            coordinates: [113.684824, 34.803043]
        },
        $maxDistance: 100
    }
, status: 1
})

좋은 웹페이지 즐겨찾기