Get the total distance cycling on a specific day.`getDistanceCycling` accepts an options object containing optional *`date: ISO8601Timestamp`* and *`unit: string`*. If `date` is not provided it will default to the current time. `unit` defaults to `meter````javascriptletoptions={unit:'mile',// optional; default 'meter'date:(newDate(2016,5,1)).toISOString(),// optional; default now};``````javascriptAppleHealthkit.getDistanceCycling(options:Object,(err:Object,results:Object)=>{if(err){return;}console.log(results)});``````javascript{value:11.45,startDate:'2016-07-08T12:00:00.000-0400',endDate:'2016-07-08T12:00:00.000-0400'}```