Hi all,I tried to integrate the new map rotation function in API 3.1 into the FV. It works perfect for the tiled layers.However, the dynamic layers didn't show unless the angle of rotation is around 0+/-5, 90+/-5, 180+/-5 or 270+/-5 degree.Did anyone know what's the problem? Thank you.Here is my code:<?xml version="1.0" encoding="utf-8"?> <viewer:BaseWidget xmlns:fx ="http://ns.adobe.com/mxml/2009" xmlns:s ="library://ns.adobe.com/flex/spark" xmlns:mx ="library://ns.adobe.com/flex/mx" xmlns:viewer ="com.esri.viewer.*" xmlns:components ="com.esri.ags.components.*"> <components:RotationWheel id="wheel" width="75" height="75" left="20" top="20" change="map.rotateTo(wheel.mapRotation, wheel.mapRotation == 0)" mapRotation="{map.mapRotation}" skinClass="com.esri.ags.skins.RotationWheelSkin"/> </viewer:BaseWidget>I just copied this from the sample and please find the RotationWheel and RotationWheelSkin from the samples come with the API.