-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathMapImageSublayerQuery.xaml
36 lines (36 loc) · 1.63 KB
/
MapImageSublayerQuery.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
35
36
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.MapImageSublayerQuery.MapImageSublayerQuery"
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 Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid Padding="5"
ColumnDefinitions="*,*"
MinimumWidthRequest="200"
RowDefinitions="auto,auto">
<Label Grid.Row="0"
Grid.Column="0"
HorizontalOptions="End"
LineBreakMode="NoWrap"
Text="[POP2000] > "
VerticalOptions="Center" />
<Entry x:Name="PopulationTextBox"
Grid.Row="0"
Grid.Column="1"
Margin="2"
Text="1810000"
VerticalOptions="Center" />
<Button x:Name="QuerySublayers"
Grid.Row="1"
Grid.Column="0"
Grid.ColumnSpan="2"
Margin="2"
Clicked="QuerySublayers_Click"
Text="Query in extent"
VerticalOptions="Center" />
</Grid>
</Border>
</Grid>
</ContentPage>