Choose camera controller

View inMAUIUWPWPFWinUIView on GitHub

Control the behavior of the camera in a scene.

Image of choose camera controller

Use case

The globe camera controller (the default camera controller in all new scenes) allows a user to explore the scene freely by zooming in/out and panning around the globe. The orbit camera controllers fix the camera to look at a target location or geoelement. A primary use case is for following moving objects like cars and planes.

How to use the sample

The application loads with the "Orbit camera around plane" option (i.e. camera will now be fixed to the plane). Choose the "Orbit camera around location" option to rotate and center the scene around the location of the Upheaval Dome crater structure, or choose the "Free pan round the globe" option to go to default free navigation.

How it works

  1. Create an instance of a class extending CameraController: GlobeCameraController, OrbitLocationCameraController, OrbitGeoElementCameraController.
  2. Set the scene view's camera controller with SceneView.CameraController = cameraController.

Relevant API

  • Camera
  • GlobeCameraController
  • OrbitGeoElementCameraController
  • OrbitLocationCameraController
  • Scene
  • SceneView

Tags

3D, camera, camera controller

Sample Code

ChooseCameraController.xamlChooseCameraController.xamlChooseCameraController.xaml.cs
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<UserControl
    x:Class="ArcGIS.UWP.Samples.ChooseCameraController.ChooseCameraController"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
    <Grid>
        <esriUI:SceneView x:Name="MySceneView" />
        <Border Style="{StaticResource BorderStyle}">
            <StackPanel Orientation="Vertical">
                <RadioButton x:Name="OrbitPlaneButton"
                                 GroupName="ColorScheme"
                                 Content="Orbit camera around plane"
                                 Checked="Setting_Checked"
                                 IsEnabled="False"
                                 IsChecked="True" />
                <RadioButton x:Name="OrbitCraterButton"
                                 GroupName="ColorScheme"
                                 Content="Orbit camera around crater"
                                 Checked="Setting_Checked"
                                 IsEnabled="False" />
                <RadioButton x:Name="FreePanButton"
                                 GroupName="ColorScheme"
                                 Content="Free pan around the globe"
                                 Checked="Setting_Checked"
                                 IsEnabled="False" />
            </StackPanel>
        </Border>
    </Grid>
</UserControl>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.