-
Notifications
You must be signed in to change notification settings - Fork 520
/
AuthorMap.xaml
24 lines (24 loc) · 1.29 KB
/
AuthorMap.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.AuthorMap.AuthorMap"
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}" />
<ActivityIndicator x:Name="SaveMapProgressBar"
Grid.RowSpan="2"
Grid.ColumnSpan="2"
HeightRequest="40"
IsRunning="True"
IsVisible="False" />
<Border MinimumWidthRequest="360" Style="{DynamicResource EsriSampleControlPanel}">
<HorizontalStackLayout Padding="5" Spacing="5">
<Button Clicked="Basemap_Clicked" Text="Basemap" />
<Button Clicked="Add_Clicked" Text="Add" />
<Button Clicked="Remove_Clicked" Text="Remove" />
<Button Clicked="NewMapButtonClick" Text="New" />
<Button Clicked="ShowSaveMapUI" Text="Save" />
</HorizontalStackLayout>
</Border>
</Grid>
</ContentPage>