View inWPFWinUIUWPFormsiOSAndroidView on GitHub
Sample viewer app
Get the draw status of your map view or scene view to know when all layers in the map or scene have finished drawing.
Use case
You may want to display a loading indicator while layers are loading, which could then be removed on DrawStatus.Completed
.
How to use the sample
Pan and zoom around the map. Observe how the status changes from a loading animation to solid, indicating that drawing has completed.
How it works
- Create a
MapView
and subscribe to the DrawStatusChanged
event.
- Inspect the draw status property in the event handler to determine draw status.
Relevant API
- Map
- DrawStatus
- DrawStatusChangedEvent
- DrawStatusChangedListener
- MapView
draw, loading, map, render
Sample Code
DisplayDrawingStatus.xamlDisplayDrawingStatus.xaml.csUse dark colors for code blocks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<UserControl x:Class="ArcGISRuntime.WPF.Samples.DisplayDrawingStatus.DisplayDrawingStatus"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<esri:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock Text="Pan and zoom to see drawing status changes."
FontWeight="SemiBold" TextAlignment="Center" />
<ProgressBar x:Name="ActivityIndicator"
IsIndeterminate="True"
Height="20" Margin="0,5,0,0"
HorizontalAlignment="Stretch" />
</StackPanel>
</Border>
</Grid>
</UserControl>