-
Notifications
You must be signed in to change notification settings - Fork 521
/
QueryFeaturesWithArcadeExpression.xaml
27 lines (27 loc) · 1.19 KB
/
QueryFeaturesWithArcadeExpression.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
<ContentPage x:Class="ArcGIS.Samples.QueryFeaturesWithArcadeExpression.QueryFeaturesWithArcadeExpression"
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>
<esriUI:MapView x:Name="MyMapView" GeoViewTapped="MyMapView_GeoViewTapped" />
<Grid x:Name="MyLoadingGrid"
HorizontalOptions="FillAndExpand"
IsVisible="False"
Opacity="0.5"
VerticalOptions="FillAndExpand">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0"
Padding="0,3"
BackgroundColor="Black"
HorizontalOptions="FillAndExpand"
HorizontalTextAlignment="Center"
Text="Loading..."
TextColor="White"
VerticalOptions="Start"
VerticalTextAlignment="Center" />
</Grid>
</Grid>
</ContentPage>