node-mongo-querystring icon indicating copy to clipboard operation
node-mongo-querystring copied to clipboard

Add support for $geoIntersects query

Open Starefossen opened this issue 11 years ago • 0 comments

URL param:

?intersects=lon,lat

Should give this query:

​geojson: {
  $geoIntersects: {
    $geometry: {
      type: "Point" , coordinates: [ lat, lon ]
    }
  }
}

Starefossen avatar Dec 09 '14 13:12 Starefossen