Has there been any core features implemented which allow us to enter the date and time we want to change the time slider to? It's nice being able to use the slider but sometimes it's nice to just type in the exact date and time and not have to fiddle around with reaching that exact moment in time.
Thanks!
Brennan
var currentTime = Cesium.JulianDate.fromDate(new Date(1995, 11, 17));
var endTime = Cesium.JulianDate.addDays(currentDate, 1, new Cesium.JulianDate());
viewer.clock.currentTime = currentTime;
viewer.timeline.zoomTo(currentTime, endTime);