forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDensifyAndGeneralize.xaml.cs
134 lines (115 loc) · 6.33 KB
/
DensifyAndGeneralize.xaml.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Copyright 2018 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
// language governing permissions and limitations under the License.
using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Symbology;
using Esri.ArcGISRuntime.UI;
using System.Drawing;
using System.Linq;
namespace ArcGISRuntime.UWP.Samples.DensifyAndGeneralize
{
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Densify and generalize",
"Geometry",
"This sample demonstrates how to densify or generalize a polyline geometry. In this example, points representing a ship's location are shown at irregular intervals. You can densify the polyline to interpolate points along the line at regular intervals. Generalizing the polyline can also simplify the geometry while preserving its general shape.",
"Use the sliders to adjust the max deviation (for generalize) and the max segment length (for densify). The results will update automatically.",
"Featured")]
public partial class DensifyAndGeneralize
{
// Graphic used to refer to the original geometry.
private Polyline _originalPolyline;
// Graphics used to show the densify or generalize result.
private Graphic _resultPolylineGraphic;
private Graphic _resultPointGraphic;
public DensifyAndGeneralize()
{
InitializeComponent();
// Create the map with a default basemap.
MyMapView.Map = new Map(Basemap.CreateStreetsNightVector());
// Create and add a graphics overlay.
GraphicsOverlay overlay = new GraphicsOverlay();
MyMapView.GraphicsOverlays.Add(overlay);
// Create the original geometry: some points along a river.
PointCollection points = CreateShipPoints();
// Show the original geometry as red dots on the map.
Multipoint originalMultipoint = new Multipoint(points);
Graphic originalPointsGraphic = new Graphic(originalMultipoint,
new SimpleMarkerSymbol(SimpleMarkerSymbolStyle.Circle, Color.Red, 7));
overlay.Graphics.Add(originalPointsGraphic);
// Show a dotted red line connecting the original points.
_originalPolyline = new Polyline(points);
Graphic originalPolylineGraphic = new Graphic(_originalPolyline,
new SimpleLineSymbol(SimpleLineSymbolStyle.Dot, Color.Red, 3));
overlay.Graphics.Add(originalPolylineGraphic);
// Show the result (densified or generalized) points as magenta dots on the map.
_resultPointGraphic = new Graphic
{
Symbol = new SimpleMarkerSymbol(SimpleMarkerSymbolStyle.Circle, Color.Magenta, 7)
};
overlay.Graphics.Add(_resultPointGraphic);
// Connect the result points with a magenta polyline.
_resultPolylineGraphic = new Graphic
{
Symbol = new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.Magenta, 3)
};
overlay.Graphics.Add(_resultPolylineGraphic);
// Listen for changes in state.
DeviationSlider.ValueChanged += (o, e) =>
UpdateGeometry("Generalize", SegmentLengthSlider.Value, DeviationSlider.Value);
SegmentLengthSlider.ValueChanged += (o, e) =>
UpdateGeometry("Densify", SegmentLengthSlider.Value, DeviationSlider.Value);
// Center the map.
MyMapView.SetViewpointGeometryAsync(_originalPolyline.Extent, 100);
}
private void UpdateGeometry(string operation, double segmentLength, double deviation)
{
// Start with the original polyline.
Polyline polyline = _originalPolyline;
// Apply the selected operation.
if (operation == "Generalize")
{
polyline = (Polyline) GeometryEngine.Generalize(polyline, deviation, true);
// Update the result label.
ResultLabel.Text = $"Operation: Generalize, Deviation: {deviation:f}";
}
else
{
polyline = (Polyline) GeometryEngine.Densify(polyline, segmentLength);
// Update the result label.
ResultLabel.Text = $"Operation: Densify, Segment length: {segmentLength:f}";
}
// Update the graphic geometries to show the results.
_resultPolylineGraphic.Geometry = polyline;
_resultPointGraphic.Geometry = new Multipoint(polyline.Parts.SelectMany(m => m.Points));
}
private static PointCollection CreateShipPoints()
{
return new PointCollection(SpatialReference.Create(32126))
{
new MapPoint(2330611.130549, 202360.002957, 0.000000),
new MapPoint(2330583.834672, 202525.984012, 0.000000),
new MapPoint(2330574.164902, 202691.488009, 0.000000),
new MapPoint(2330689.292623, 203170.045888, 0.000000),
new MapPoint(2330696.773344, 203317.495798, 0.000000),
new MapPoint(2330691.419723, 203380.917080, 0.000000),
new MapPoint(2330435.065296, 203816.662457, 0.000000),
new MapPoint(2330369.500800, 204329.861789, 0.000000),
new MapPoint(2330400.929891, 204712.129673, 0.000000),
new MapPoint(2330484.300447, 204927.797132, 0.000000),
new MapPoint(2330514.469919, 205000.792463, 0.000000),
new MapPoint(2330638.099138, 205271.601116, 0.000000),
new MapPoint(2330725.315888, 205631.231308, 0.000000),
new MapPoint(2330755.640702, 206433.354860, 0.000000),
new MapPoint(2330680.644719, 206660.240923, 0.000000),
new MapPoint(2330386.957926, 207340.947204, 0.000000),
new MapPoint(2330485.861737, 207742.298501, 0.000000)
};
}
}
}