View in MAUI WPF WinUI UWP View on GitHub

Cut a geometry along a polyline.

Image of cut geometry

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

  1. Pass the polyline to the static extension method GeometryEngine.Cut() to cut the geometry along the polyline.
  2. 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

CutGeometry.xaml CutGeometry.xaml CutGeometry.xaml.cs
<UserControl x:Class="ArcGIS.WPF.Samples.CutGeometry.CutGeometry"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<Button x:Name="CutButton"
Click="CutButton_Click"
Content="Cut" />
</Border>
</Grid>
</UserControl>