In 10.2.3, Right click to zoom is enabled by default. Middle click allowed me to rotate the map.
In 10.2.4, even after enabling Rotation and Zooming via the InteractionOptions, I am no longer able to perform either action. Is there any way to re-enable the 10.2.3 behaviours?
| XAML InteractionOptions Snippet |
|---|
<esri:MapView.InteractionOptions> <esri:InteractionOptions> <esri:InteractionOptions.ZoomOptions> <esri:ZoomOptions IsEnabled="True" IsDoubleTappedEnabled="True" IsZoomBoxEnabled="False" IsMouseWheelEnabled="True" IsPinchEnabled="True" IsTwoFingerTapEnabled="True" IsKeyboardEnabled="False" /> </esri:InteractionOptions.ZoomOptions> <esri:InteractionOptions.RotationOptions > <esri:RotationOptions IsEnabled="True" /> </esri:InteractionOptions.RotationOptions> <esri:InteractionOptions.PanOptions> <esri:PanOptions IsEnabled="True" IsDragEnabled="True" IsFlickEnabled="True" IsKeyboardEnabled="True" /> </esri:InteractionOptions.PanOptions> </esri:InteractionOptions> </esri:MapView.InteractionOptions> |