Created
March 29, 2016 00:45
-
-
Save leosilvadev/771b764bbe5aa56ac016 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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