Skip to content

Instantly share code, notes, and snippets.

@leosilvadev
Created March 29, 2016 00:45
Show Gist options
  • Save leosilvadev/771b764bbe5aa56ac016 to your computer and use it in GitHub Desktop.
Save leosilvadev/771b764bbe5aa56ac016 to your computer and use it in GitHub Desktop.
//Cria um Index do tipo 2dsphere
db.people.createIndex({location:"2dsphere"})
//Longitude, Latitude​
db.people.insert({location:[-9.1368980,38.7639020]})
db.users.find({
location:{
$near: {
$geometry:{
type:"Point",
coordinates:[-9.2138023, 38.7885261] //Longitude, Latitude
},
$maxDistance:7300, //Metros
$minDistance:10 //Metros
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment