Last active
October 9, 2019 10:07
-
-
Save BDOMDev/092c826f28dc26923f0b322141ccd485 to your computer and use it in GitHub Desktop.
This file contains 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
const geoSchema = new Schema({ | |
type: { | |
type: String, | |
default: 'Point' | |
}, | |
coordinates: { | |
type: [Number] | |
} | |
}); | |
var VehicleSchema = new Schema( | |
{ | |
location: { | |
type: geoSchema, | |
index: '2dsphere' | |
}, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment