mongodb, ordenando por geoNear y fecha?

¿Cómo ordenar por proximidad y fecha en mongoDB? Intenté esto. Pero ellos solo ordenan por fecha:

   coll.find({'date':{$gte:date},'location':{$nearSphere:[lat,lng]}}).sort({'date':1}).execFind(function (err, docs) {})

Aprecio la ayuda.