forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConvexHull.xaml
31 lines (30 loc) · 1.28 KB
/
ConvexHull.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms"
xmlns:local="clr-namespace:ArcGISRuntime.Samples.ConvexHull"
x:Class="ArcGISRuntime.Samples.ConvexHull.ConvexHull">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label x:Name="ConvexHullInstructionsLabel"
Grid.Row="0"
FontSize="Small"
Text="Tap on the map in several places, then click the 'Convex Hull' button.">
</Label>
<Button x:Name="ConvexHullButton"
Grid.Row="1"
Text="Convex Hull"
Clicked="ConvexHullButton_Clicked" />
<Button x:Name="ResetButton"
Grid.Row="2"
Text="Reset"
Clicked="ResetButton_Clicked" />
<esriUI:MapView x:Name="MyMapView"
Grid.Row="3" />
</Grid>
</ContentPage>