-
Notifications
You must be signed in to change notification settings - Fork 520
/
FeatureLayerRenderingModeScene.xaml
34 lines (34 loc) · 1.39 KB
/
FeatureLayerRenderingModeScene.xaml
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
30
31
32
33
34
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.FeatureLayerRenderingModeScene.FeatureLayerRenderingModeScene"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Maui;assembly=Esri.ArcGISRuntime.Maui">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Grid.Row="0"
Grid.ColumnSpan="2"
Text="Static Mode:" />
<esriUI:SceneView x:Name="MyStaticSceneView"
Grid.Row="1"
Grid.ColumnSpan="2" />
<Label Grid.Row="2"
Grid.Column="0"
Text="Dynamic Mode:" />
<Button Grid.Row="2"
Grid.Column="1"
Clicked="Button_Clicked"
Text="Animated Zoom" />
<esriUI:SceneView x:Name="MyDynamicSceneView"
Grid.Row="3"
Grid.ColumnSpan="2" />
</Grid>
</ContentPage>