2

BoundingBox 内のアイテムに一致するクエリに問題があります。2dsphereタイプ(GEO JSON)のすべてのアイテムを一致させるにはどうすればよいですか? この場合、タイプのデータのみを取得しましたPointが、タイプのアイテムはLineString結果内に表示されません。

スキーマ定義は次の例のようになります。

/**
 * Media location values (Point, LineString, Polygon)
 * @property location
 * @type {Object}
 */
 location:{
      "type":Object,
      "index":"2dsphere"
 },

私はその中に例えばこのアイテムを持っています:

[

    {
        "_account": "52796da308d618090b000001",
        "_id": "5284e5798a1c039735000001",
        "location": {
            "coordinates": [
                8.663705555555556,
                50.10165277777778
            ],
            "type": "Point"
        },
        "name": "Foto.JPG",
        "preview": "/img/thumbs/13719-3zavxm.JPG",
        "type": "image/jpeg",
        "added": "2013-11-14T15:00:09.113Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    },
    {
        "_account": "52796da308d618090b000001",
        "name": "Filtererd_Track.kml",
        "type": "application/vnd.google-earth.kml+xml",
        "_id": "5284e5c48a1c039735000002",
        "added": "2013-11-14T15:01:24.280Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    },
    {
        "_account": "52796da308d618090b000001",
        "_id": "5284e5c48a1c039735000003",
        "location": {
            "coordinates": [
                [
                    9.49653,
                    50.94791
                ],
                [
                    9.49731,
                    50.94811
                ],
                [
                    9.49744,
                    50.94812
                ],
                [
                    9.49755,
                    50.94808
                ],
                [
                    9.4991,
                    50.94579
                ],
                [
                    9.49969,
                    50.94545
                ],
                [
                    9.50037,
                    50.94525
                ],
                [
                    9.50136,
                    50.9452
                ],
                [
                    9.50851,
                    50.98557
                ]
            ],
            "type": "LineString"
        },
        "name": "test 2.gpx",
        "preview": "/img/thumbs/13719-14rvt8w.png",
        "type": "application/gpx+xml",
        "added": "2013-11-14T15:01:24.529Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    }

]

アイテムを取得するクエリは次の例のようになりますが、一致しませんLineStrings/ Polygons.... サブ配列が原因だと思いますが、これをクエリに含める方法がわかりません。

{
    {
        "location": {
            "$geoWithin": {
                "$box": [
                    [
                        -39.375,
                        36.73888412439431
                    ],
                    [
                        76.640625,
                        56.897003921272606
                    ]
                ]
            }
        }
    }
}
4

1 に答える 1