Cut a geometry along a polyline.
Use case
You might cut a polygon representing a large parcel to subdivide it into smaller parcels.
How to use the sample
Click the "Cut" button to cut the polygon with the polyline and see the resulting parts (shaded in different colors).
How it works
- Pass the geometry and polyline to
GeometryEngine.Cut
to cut the geometry along the polyline. - Loop through the returned list of part geometries. Some of these geometries may be multi-part.
Relevant API
- GeometryEngine.Cut
- Polygon
- Polyline
Tags
cut, geometry, split
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.CutGeometry.CutGeometry"
x:Name="_this"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ArcGIS.UWP.Samples.CutGeometry"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock x:Name="CutInstructionsLabel"
Text="Click the 'Cut' button to cut the polygon with the polyline and see the resulting parts."
TextWrapping="Wrap"
Margin="0,0,0,10"/>
<Button x:Name="CutButton"
Content="Cut"
HorizontalAlignment="Stretch"
Click="CutButton_Click"/>
</StackPanel>
</Border>
</Grid>
</UserControl>