I have a time layer with slider - what I want to do is fade in and out the observations so it is a smooth animation - can anyone help me out with this? I need each time extent to represent one time instance, but to fade in and out nicely. (I have played around with TemporalRenderers but can't seem to get the effect I need.)
Any help much appreciated!
Cheers,
Inga
protected function featurelayer1_loadHandler(event:LayerEvent):void {
var ti:TimeInfo = FeatureLayer(event.layer).layerDetails.timeInfo;
myTimeSlider.createTimeStopsByTimeInterval(ti.timeExtent, ti.timeInterval, ti.timeIntervalUnits);}
.
.
.
<esri:Map id="myMap" timeSlider="{myTimeSlider}" >
...
<esri:FeatureLayer
="featurelayer1_loadHandler(event)"
url="...." >
</esri:Map>
<esri:TimeSlider id="myTimeSlider" thumbCount="1" singleThumbAsTimeInstant="true" x="372" y="707"/>